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!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
i have a list of address in excel in this format
Address line 1
Address line 2
Town
Sa91pd
Address line 1
Address line 2
Town
Sa91pd
Address line 1
Address line 2
Town
postcode
the list is all in one coloumn and has multiple address. is there a method to have each address on one line with mutiple coloumns?
@NewbieJono , simple enough as every complete address consists of 4 rows,
let
Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WckxJKUotLlbIycxLVTBUitVBEzICC4Xkl+eBGcGJloYFKZjKaKmzIL+4JDk/JVUpNhYA", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [Address = _t]),
Custom1 = Table.FromRows(List.Split(Source[Address],4))
in
Custom1
Thanks to the great efforts by MS engineers to simplify syntax of DAX! Most beginners are SUCCESSFULLY MISLED to think that they could easily master DAX; but it turns out that the intricacy of the most frequently used RANKX() is still way beyond their comprehension! |
DAX is simple, but NOT EASY! |
sorry, to make this more complaicated some address have 5 rows!
the postcode seem to be consitantly in captials if this is any help
Hi @NewbieJono ,
Could you pls attach your expected output?It's a bit confused about your requirement.
Best Regards,
Kelly
Did I answer your question? Mark my post as a solution!
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the October 2025 Power BI update to learn about new features.