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!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Hello,
Currently y have a table with snapshot of deals the date of the snapshot and if in that date the deal had a flag or not. ( see below)
I want to create a column that puts the first date when the deal had a flag. So for example deal h first had the flag on the 22, then i only want a date on a new column for the 22th of April not for the 22 and 29.
how can i do this?
thank you
Solved! Go to Solution.
Hi @jfmejiav1,
Try this for your new calculated column, where Table1 is the table you show:
NewCol =
CALCULATE (
MIN ( Table1[SnapDate] ),
Table1[Flag] = 1,
ALLEXCEPT ( Table1, Table1[Deal iD] )
)
or this (I'm not quite sure which one you need):
NewCol =
VAR _Date =
CALCULATE (
MIN ( Table1[SnapDate] ),
Table1[Flag] = 1,
ALLEXCEPT ( Table1, Table1[Deal iD] )
)
RETURN
IF ( Table1[SnapDate] = _Date, _Date )
Hi @jfmejiav1,
Try this for your new calculated column, where Table1 is the table you show:
NewCol =
CALCULATE (
MIN ( Table1[SnapDate] ),
Table1[Flag] = 1,
ALLEXCEPT ( Table1, Table1[Deal iD] )
)
or this (I'm not quite sure which one you need):
NewCol =
VAR _Date =
CALCULATE (
MIN ( Table1[SnapDate] ),
Table1[Flag] = 1,
ALLEXCEPT ( Table1, Table1[Deal iD] )
)
RETURN
IF ( Table1[SnapDate] = _Date, _Date )
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 53 | |
| 48 | |
| 38 | |
| 15 | |
| 14 |
| User | Count |
|---|---|
| 93 | |
| 79 | |
| 37 | |
| 27 | |
| 25 |