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.
Greetings everyone. Long story short - I've been stuck with the problem for days now, not knowing what to do, so I've decided to give these forums a go.
First of all, the data (names were altered a little for the sake of ease and confidentiality):
- There are 6 phases, each one has it's own date value.
- Data itself comes from database which I cannot edit; Nor can I edit a SQL-query; so NULLs instead of BLANKs is not an option.

Second, what I need:
- I need the measure to return value of the subsequent column, i.e. measure should return the value of "Start 2" after "Start 1", and that should go on till "Start 6".
- If there is a date value in subsequent column - measure returns it.
- If there is NO date value (i.e. BLANK()) in subsequent column - measure returns "Insufficient Data". (now this one is KEY moment)
Third, what do I get with my measure:
- It does work well when the "Phase" columns are filled and complete:

- It doesn't work well when there are spaces between dates:


- and THIS IS the problem. Measure I created "jumps over" from "Start 1" straight to "Start 5", ignoring previous column values because them being BLANKs. I tried to preserve it with functions like ISBLANK() and etc., but it jumps over still.
NOTE: The problem not just with "Start 1" and "Start 5" - it can occure with any "Start #" in this range.
Hi @Anonymous ,
Here are the steps you can follow:
1. Create calculated table.
Table 2 =
UNION(
SELECTCOLUMNS('Table',"Start",[Start1]),
SELECTCOLUMNS('Table',"Start",[Start2]),
SELECTCOLUMNS('Table',"Start",[Start3]))
2. Result:
If you need pbix, please click here.
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
@Anonymous , Check Unpivot in power query can help
I don't have rights to edit anything in PQ, unfortunately:(
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 |
|---|---|
| 78 | |
| 46 | |
| 37 | |
| 31 | |
| 26 |