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 dateJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register 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()
)
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
16 | |
8 | |
7 | |
7 | |
6 |
User | Count |
---|---|
23 | |
11 | |
10 | |
10 | |
8 |