Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by attending the DP-600 session on April 23rd (pacific time), live or on-demand.
Learn moreNext up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now
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!
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 48 | |
| 43 | |
| 39 | |
| 19 | |
| 17 |
| User | Count |
|---|---|
| 69 | |
| 63 | |
| 32 | |
| 30 | |
| 23 |