1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Microsoft Listsの条件付き書式の設定時のフィールド名の命名ルール

Posted at

気づいた限りのルール

  1. 内部変数名の文字長は32バイト
  2. 変数名は英字のみの場合はそのまま
  3. 英字以外の記号、漢字などが入ると、次のルールに従って変数名が定義される
  4. 3のルールに基づき連なった文字列を先頭32バイトで命名する

3. 英字以外の記号、漢字などが入ると、次のルールに従って変数名が定義される

英字以外の記号、漢字などが入ると、次のルールに従って変数名が定義される

_{対象の文字のUNICODE}

ならば、

_x5bfe

3のルールに基づき連なった文字列を先頭32バイトで命名する

隣の客も良く柿食う客だが列名ならば、それぞれのUnicodeを列挙し、結合後、先頭32桁が変数名になる。

1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?