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
We're bringing some data in via API, and it's a process and a half to get it in.
When data is ingested, it's first a list, and the list expands into a table:
That is then converted to a table:
That can be expanded into a full table, but this is where the problem starts:
All of those "Record" items can be expanded into two columns, but because there are gaps in the data, we cannot expand the whole column at once. There are no arrows at the column header to do so.
We know some of the data is blank, this is fine, but we need to see the expanded columns for every Record item. Is this possible?
Solved! Go to Solution.
Hi @SevsBo
As suggested by @lbendlin you can use Value.Is to check if the column contains a record and then extract the data, like so
if Value.Is([business_service], type record) then [business_service][ColA] else ""
Alternatively you can use the optional field selector '?' to do the same
= [business_service][ColA]?
In both cases you will need to create Custom Columns and then delete the original business_service column.
Download example PBIX file here with both approaches
Regards
Phil
Proud to be a Super User!
Hi @SevsBo
As suggested by @lbendlin you can use Value.Is to check if the column contains a record and then extract the data, like so
if Value.Is([business_service], type record) then [business_service][ColA] else ""
Alternatively you can use the optional field selector '?' to do the same
= [business_service][ColA]?
In both cases you will need to create Custom Columns and then delete the original business_service column.
Download example PBIX file here with both approaches
Regards
Phil
Proud to be a Super User!
Value.Is is your friend here. You need to probe if [Business_value] is of type Record or of type null. In the latter case you need to provide a dummy blank record that can be expanded just like the actual record.
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 57 | |
| 44 | |
| 40 | |
| 21 | |
| 18 |