Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.
I have already created a following dax to get either "PM" or "Non PM" for all different values. However, there are blank values too, and the result is coming "PM","Non PM", and "Blank". i want to replace that "Blank" value to "Unknown". Can please somebody help me on that?
Solved! Go to Solution.
Hi @Rabin87 ,
According to your description, here’s my solution.
If my understanding is not accurate,could you show me more details?
Best Regards,
Community Support Team _ kalyj
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi, @Rabin87
Have you followed the DAX formula posted by v-kalyj-msft to find the solution?
If so, would you like to mark his reply as a solution so that others can learn from it too?
Thanks in advance!
How to Get Your Question Answered Quickly
Best Regards,
Community Support Team _Robert Qin
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Rabin87 ,
According to your description, here’s my solution.
If my understanding is not accurate,could you show me more details?
Best Regards,
Community Support Team _ kalyj
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Like this?
Role =
IF (
LEN ( role[Name] ) = 0, "Unknown",
IF ( CONTAINSSTRING ( role[Name], "PROJECT MANAGER" ), "PM", "Non-PM" )
)
User | Count |
---|---|
20 | |
14 | |
11 | |
8 | |
6 |
User | Count |
---|---|
23 | |
23 | |
20 | |
15 | |
10 |