Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
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()
)