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

Be 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

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
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

ArunFabCon

Microsoft Fabric Community Conference 2025

Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.