Skip to content

Commit b52ecb7

Browse files
Merge pull request #958 from KayUnkroth/patch-1
Update search-function-dax.md
2 parents fa1b054 + 7c6b35d commit b52ecb7

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

query-languages/dax/search-function-dax.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ title: "SEARCH function (DAX)"
66

77
[!INCLUDE[applies-to-measures-columns-tables-visual-calculations](includes/applies-to-measures-columns-tables-visual-calculations.md)]
88

9-
Returns the number of the character at which a specific character or text string is first found, reading left to right. Search is case-insensitive and accent sensitive.
9+
Returns the number of the character at which a specific character or text string is first found, reading left to right. Search is case-insensitive, kanatype-insensitive, width-insensitive, and accent sensitive.
1010

1111
## Syntax
1212

@@ -31,6 +31,8 @@ The number of the starting position of the first text string from the first char
3131

3232
- The search function is case insensitive. Searching for "N" will find the first occurrence of 'N' or 'n'.
3333

34+
- The search function is kanatype-insensitive, width-insensitive. Searching for "か" will find the first occurrence of 「か」 (hiragana), 「カ」 (katakana), or 「カ」 (half-width katakana).
35+
3436
- The search function is accent sensitive. Searching for "á" will find the first occurrence of 'á' but no occurrences of 'a', 'à', or the capitalized versions 'A', 'Á'.
3537

3638
- You can use the SEARCH function to determine the location of a character or text string within another text string, and then use the MID function to return the text, or use the REPLACE function to change the text.

0 commit comments

Comments
 (0)