Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreGet certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now
I have columns ID, Name.
I'm using Text Filter to enter ID and filter the charts.
Requirement: I want the card to show Emp Name, if Length of the ID in the Text filter is equal to 10 characters.
Solved! Go to Solution.
Hello @ARUNTKAP,
Please try following measure:
EmpName =
VAR SelectedID = SELECTEDVALUE(Table[ID])
VAR IDLength = LEN(SelectedID)
VAR EmpName = CALCULATE(MIN(Table[Name]),FILTER(Table,Table[ID]=IDLength))
RETURN IF(IDLength>=10,EmpName,BLANK())
Hope this helps.
Hi @ARUNTKAP
Do you mean length of text used for seraching or length of result you get after search.
Example
your ids are
12345
45789
You type 123
So you are checking length of 123 or length of 12345?
If you are checking lengh of 123 then its not possible as text slicer is just used for searching purpose.
IF you want to check lenght of result after search that is 12345 then use below dax.
Hello @ARUNTKAP,
Please try following measure:
EmpName =
VAR SelectedID = SELECTEDVALUE(Table[ID])
VAR IDLength = LEN(SelectedID)
VAR EmpName = CALCULATE(MIN(Table[Name]),FILTER(Table,Table[ID]=IDLength))
RETURN IF(IDLength>=10,EmpName,BLANK())
Hope this helps.
Small correction I did to get the answer:
Instead of FILTER(Table,Table[ID]=IDLength))
FILTERTable,Table[ID]=selectedId))
Hi @ARUNTKAP
Do you mean length of text used for seraching or length of result you get after search.
Example
your ids are
12345
45789
You type 123
So you are checking length of 123 or length of 12345?
If you are checking lengh of 123 then its not possible as text slicer is just used for searching purpose.
IF you want to check lenght of result after search that is 12345 then use below dax.
Hi @Anonymous
Thanks for your input. I shall use your dax formulas in future, for my other need.
Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.
User | Count |
---|---|
92 | |
87 | |
84 | |
65 | |
49 |
User | Count |
---|---|
140 | |
114 | |
110 | |
59 | |
59 |