Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Kim_Sky
Helper II
Helper II

shown true or false by date filter

Hi, 

I have the table name total value

TimestampValueCategory
5/6/225A
5/6/228A
5/6/229B
7/6/221C
7/6/2214A

 

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 

TimestampCategoryyesorno
5/6/22AFalse
5/6/22BBlank 
7/6/22CBlank 
7/6/22ATrue

 

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. 

1 ACCEPTED SOLUTION
v-yadongf-msft
Community Support
Community Support

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.

vyadongfmsft_0-1661161548797.png

 

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.

View solution in original post

2 REPLIES 2
v-yadongf-msft
Community Support
Community Support

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.

vyadongfmsft_0-1661161548797.png

 

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.

Kim_Sky
Helper II
Helper II

Kim_Sky_0-1660747565185.png

Kim_Sky_1-1660747577052.png

I would like to show the result of A only, and if A is true and false then always true. 

 

Thanks for your help. 

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors