Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredJoin 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.
Hello experts,
I got stuck with this project and can't seem to find a possible solution without creating another table. Basically, I have products in 12M that I need to see if they already exist in the previous years (<>12M). This is what I come up with. Obviously it is not working. Can anyone please take a look and point me to the right direction? Much appreciated!
Solved! Go to Solution.
Hi @danny_dmv ,
According to your description, here's my solution.
Create a calculated column.
Result =
IF (
'Table'[Time] = "12M",
IF (
COUNTROWS (
FILTER (
'Table',
'Table'[Product] = EARLIER ( 'Table'[Product] )
&& 'Table'[Time] <> "12M"
)
) > 0,
"Existing",
"New"
)
)
Or if you prefer a measure.
Measure =
IF (
MAX ( 'Table'[Time] ) = "12M",
IF (
COUNTROWS (
FILTER (
ALL ( 'Table' ),
'Table'[Product] = MAX ( 'Table'[Product] )
&& 'Table'[Time] <> "12M"
)
) > 0,
"Existing",
"New"
)
)
Get the correct result.
I attach my sample below for your reference.
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 @danny_dmv ,
According to your description, here's my solution.
Create a calculated column.
Result =
IF (
'Table'[Time] = "12M",
IF (
COUNTROWS (
FILTER (
'Table',
'Table'[Product] = EARLIER ( 'Table'[Product] )
&& 'Table'[Time] <> "12M"
)
) > 0,
"Existing",
"New"
)
)
Or if you prefer a measure.
Measure =
IF (
MAX ( 'Table'[Time] ) = "12M",
IF (
COUNTROWS (
FILTER (
ALL ( 'Table' ),
'Table'[Product] = MAX ( 'Table'[Product] )
&& 'Table'[Time] <> "12M"
)
) > 0,
"Existing",
"New"
)
)
Get the correct result.
I attach my sample below for your reference.
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.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 79 | |
| 48 | |
| 35 | |
| 31 | |
| 27 |