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

July 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more

Reply
juhoneyighot
Helper III
Helper III

Conditional DAX Formula

Hello!

 

I need help with the correct Count DAX formula ont this.I have this table (Time entry) I need to have the following:

 

1 Time-Off TYpe Column: Only those Vacation with Approve Status will have a Time Off Type. This is the condition:

 

juhoneyighot_1-1710868976657.png

If the Vacation is a Sick Leave Time Off TYpe is Sick Leave else Casual But then again, only those vacation with approved status is applicable on this

 

Thank you,

 

Juhoney

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @juhoneyighot ,

 

Please try:

Time Off Type = 
IF(
    AND([Type] = "Vacation", [Status] = "Approve"),
    SWITCH(
        [Description],
        "Sick Leave", "Sick Leave",
        "Casual"
    ),
    BLANK()
)

 

The page result is shown below:

vhuijieymsft_0-1710898148355.png

 

If you have any other questions please feel free to contact me.

 

The pbix file is attached.

 

Best Regards,
Yang
Community Support Team

 

If there is any post helps, then please consider Accept it as the solution  to help the other members find it more quickly.
If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!

View solution in original post

1 REPLY 1
Anonymous
Not applicable

Hi @juhoneyighot ,

 

Please try:

Time Off Type = 
IF(
    AND([Type] = "Vacation", [Status] = "Approve"),
    SWITCH(
        [Description],
        "Sick Leave", "Sick Leave",
        "Casual"
    ),
    BLANK()
)

 

The page result is shown below:

vhuijieymsft_0-1710898148355.png

 

If you have any other questions please feel free to contact me.

 

The pbix file is attached.

 

Best Regards,
Yang
Community Support Team

 

If there is any post helps, then please consider Accept it as the solution  to help the other members find it more quickly.
If I misunderstand your needs or you still have problems on it, please feel free to let us know. Thanks a lot!

Helpful resources

Announcements
FabCon and SQLCon Barcelona 2026

FabCon & SQLCon – Barcelona 2026

Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.

60 days of Data Days Carousel

Data Days 2026

Join Fabric Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.