March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hi,
I have the table name total value
Timestamp | Value | Category |
5/6/22 | 5 | A |
5/6/22 | 8 | A |
5/6/22 | 9 | B |
7/6/22 | 1 | C |
7/6/22 | 14 | A |
I using this dax for summaries table,
total value table =sum(total value[value])
Daily = SUMMARIZE(total value,total value[Timestamp],total value[Category],"Value",[Total value table])
yesorno = SWITCH(TRUE(),'Daily'[Category]="A"&&'Daily'[Value]>13,TRUE,'Daily'[Category]="A"&&'Daily'[Value]<=13,FALSE,BLANK())
In the result should
Timestamp | Category | yesorno |
5/6/22 | A | False |
5/6/22 | B | Blank |
7/6/22 | C | Blank |
7/6/22 | A | True |
How should I create the card if I have a date filter, I want to shown False for the day I selected (5/6/22) and True for the day (7/6/22).
I tried to input the yesorno into card but it shown the count of yesorno.
Thanks for your help.
Solved! Go to Solution.
Hi @Kim_Sky
Please try following DAX:
yesorno = SWITCH(
TRUE(),
'Daily'[Category] = "A" && 'Daily'[Value] > 13, "TRUE",
'Daily'[Category]="A" && 'Daily'[Value] <=13, "FALSE")
Then you can get result you want.
Best regards,
Yadong Fang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Kim_Sky
Please try following DAX:
yesorno = SWITCH(
TRUE(),
'Daily'[Category] = "A" && 'Daily'[Value] > 13, "TRUE",
'Daily'[Category]="A" && 'Daily'[Value] <=13, "FALSE")
Then you can get result you want.
Best regards,
Yadong Fang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
I would like to show the result of A only, and if A is true and false then always true.
Thanks for your help.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
21 | |
14 | |
11 | |
8 | |
5 |
User | Count |
---|---|
24 | |
21 | |
20 | |
15 | |
10 |