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!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Each row is a submission of a product to a system, I am trying to figure out how to make the "Feature A Added" column calculate automatically based on the first three columns.
I want to know at what submission Feature A was added to the product, so in a later report I can display only the rows that had the feature added, without caring about the before and after submissions.
I'm not even sure where to start, any advice is greatly appritiated.
- Z
Solved! Go to Solution.
Hi @Zumbug,
Feature A added =
IF (
'Feature add'[Submission]
= CALCULATE (
FIRSTNONBLANK ( 'Feature add'[Submission], 1 ),
FILTER (
ALLEXCEPT ( 'Feature add', 'Feature add'[Product] ),
'Feature add'[Supports Feature A] = "Yes"
)
),
"Yes",
"No"
)
Best regards,
Yuliana Gu
Hi @Zumbug,
Feature A added =
IF (
'Feature add'[Submission]
= CALCULATE (
FIRSTNONBLANK ( 'Feature add'[Submission], 1 ),
FILTER (
ALLEXCEPT ( 'Feature add', 'Feature add'[Product] ),
'Feature add'[Supports Feature A] = "Yes"
)
),
"Yes",
"No"
)
Best regards,
Yuliana Gu
This is perfect, thank you very much!
So for a given Product the minimum submission where Supports Feature A is "Yes" ?
Yes exactly that!
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 41 | |
| 38 | |
| 36 | |
| 30 | |
| 28 |
| User | Count |
|---|---|
| 129 | |
| 88 | |
| 79 | |
| 68 | |
| 63 |