Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
Hi, I am stuck here.
Attached is the matrix i have on PBI.
The column headers are static data entered as a text type, showcasing a week's date range. This data will change every week.
How can i sort it in such a way that (in this example) 30th March - 5th Apr is first, 6th - 12th Apr is second, and then > 13th Apr is third.
I'm really confused, if anyone could provide an alternative to sorting directly also, that would work.
Just need anything that works
Solved! Go to Solution.
see my video
https://1drv.ms/v/s!AiUZ0Ws7G26RhxEUJVRvC1njL21i?e=MSsHdp
Based on your description, I created data to reproduce your scenario. The pbix file is attached in the end.
https://1drv.ms/u/s!AiUZ0Ws7G26RhxCRRw-4sg9a49rB?e=F4gmfQ
List.Max(
List.Transform(
Text.Split([#"ColB - Copy"],"-"),(x)=>
Number.From(try Date.FromText(Text.Trim(x), [Format = "dd MMM yy", Culture = "en-EN"])otherwise
Date.FromText(Text.Trim(x), [Format = "dd MMM yy", Culture = "en-EN"]
))))
see my video
https://1drv.ms/v/s!AiUZ0Ws7G26RhxEUJVRvC1njL21i?e=MSsHdp
Based on your description, I created data to reproduce your scenario. The pbix file is attached in the end.
https://1drv.ms/u/s!AiUZ0Ws7G26RhxCRRw-4sg9a49rB?e=F4gmfQ
List.Max(
List.Transform(
Text.Split([#"ColB - Copy"],"-"),(x)=>
Number.From(try Date.FromText(Text.Trim(x), [Format = "dd MMM yy", Culture = "en-EN"])otherwise
Date.FromText(Text.Trim(x), [Format = "dd MMM yy", Culture = "en-EN"]
))))
this worked! thanks a ton
@Ahmedx thanks a lot for the support, i will try this solution and keep you updated on the progress.
Share sample pbix file to help you.
@Ahmedx thanks so much for the links, but my main problem is that the data will change every week , as you can see it is weekly data. How can i implement dynamic custom sorting?
you need to add an index column next to
Column header and it must be dynamic.
write how you enter the name of these columns as text?