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

Score big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount

Reply
pchekuru
Frequent Visitor

How to write below case statements in DAX

There are three tables involved in below statement. Table a, Table b, Table c.

 

COUNT (
DISTINCT CASE
WHEN a.PARTICIPANT_STATUS = 'No Show'
AND b.EVT_END_DT >= c.WEEK_END_DT
OR a.PARTICIPANT_STATUS NOT IN ('No Show')
AND NVL (
a.reg_dt,
ADD_MONTHS (
TO_DATE ('2019-06-21', 'YYYY-MM-DD'),
73)) >= c.WEEK_END_DT
AND a.cancel_dt <=
c.WEEK_END_DT
AND NVL (
a.transfer_dt
ADD_MONTHS (
TO_DATE ('2019-06-21', 'YYYY-MM-DD'),
73)) >= c.WEEK_END_DT
THEN
a.ROW_WID
END)

1 REPLY 1
Anonymous
Not applicable

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

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