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
Hello,
I am new with DAX and I am having some issues with the following:
1. Table has a column 'first_visit' (date type) with some null values;
2. some rows with same 'id' have column 'first_visit' with data and other rows have null values
Output desired:
I have tried LOOKUPVALUE, ISBLANK functions but I am having some syntax problems.
Thank you in advance for your help.
Solved! Go to Solution.
Hi, @yellow43
You can try the following methods.
New =
IF (
[first_visit] = BLANK (),
CALCULATE (
MIN ( 'Table'[first_visit] ),
FILTER ( 'Table', [id] = EARLIER ( 'Table'[id] ) )
),
[first_visit]
)
Is this the result you expect?
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi, @yellow43
You can try the following methods.
New =
IF (
[first_visit] = BLANK (),
CALCULATE (
MIN ( 'Table'[first_visit] ),
FILTER ( 'Table', [id] = EARLIER ( 'Table'[id] ) )
),
[first_visit]
)
Is this the result you expect?
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Thank you @v-zhangti ! It worked just fine.
Meanwhile I have tried and came to this solution:
newFirstVisit = CALCULATE (
MIN ( Table[FirstVisit] );
ALLEXCEPT ( Table; Table[Id] )
)
Please let me know if this is also an option. Result was what I expected, but this might not be the best solution... is it ok?
Calculate(
Min(table[fisrt_visit],
Filter(
table,
table[id]=eariler(table[id]) &&
table[first_visit] <> blank()
)
)
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
Check out the November 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 20 | |
| 11 | |
| 10 | |
| 4 | |
| 4 |
| User | Count |
|---|---|
| 34 | |
| 31 | |
| 19 | |
| 12 | |
| 11 |