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.
I have the following Table:
GROUP which is a list of all clients
TIME that has as values January, February and December
I need to create another column (or maybe a measure would be better) which assigns "New" to clients which are present only when TIME is equal to December.
I think my dax knowledge is not good enoguh to solve this issue, i guess FILTER would be needed but i'm not sure how to use it
Thanks!
Solved! Go to Solution.
Hi @robdan,
Can you try using this measure:
New Client? =
VAR __ConditionMet = CALCULATE(
COUNTROWS('Sample'),
'Sample'[Time] = "December"
) > 0
RETURN
IF(
__ConditionMet,
"New",
BLANK()
)
Hi @robdan
@govindarajan_d GOOD ANSWER!
You can also try the following measure:
My sample:
Measure = IF(MAX([Time]) = "December", "New", BLANK())
Best Regards,
Yulia Xu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @robdan
@govindarajan_d GOOD ANSWER!
You can also try the following measure:
My sample:
Measure = IF(MAX([Time]) = "December", "New", BLANK())
Best Regards,
Yulia Xu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @robdan,
Can you try using this measure:
New Client? =
VAR __ConditionMet = CALCULATE(
COUNTROWS('Sample'),
'Sample'[Time] = "December"
) > 0
RETURN
IF(
__ConditionMet,
"New",
BLANK()
)
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
24 | |
10 | |
6 | |
6 | |
6 |
User | Count |
---|---|
30 | |
11 | |
11 | |
10 | |
6 |