Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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:
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
Solved! Go to Solution.
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:
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!
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:
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!