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!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
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!
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 |
|---|---|
| 11 | |
| 9 | |
| 7 | |
| 4 | |
| 4 |
| User | Count |
|---|---|
| 24 | |
| 15 | |
| 13 | |
| 12 | |
| 9 |