Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
It takes more than 10 hours to download a report no more than 400Mb.
Also, when I was tring to change a DAX scripts in this report, it takes me more than 10 hours to apply the changes.
original scripts:
= Table.AddColumn(#"Renamed Columns", "Overview Tile", each if Text.StartsWith([Action], "overview") and Text.Contains([Action], "featureadoption") then "Feature Adoption Tile"
else if Text.StartsWith([Action], "overview") and Text.Contains([Action], "opportunities") then "Opportunities Tile"
else if Text.StartsWith([Action], "overview") and Text.Contains([Action], "pilot") then "Pilots Tile"
else
"Any")
new scripts:
= Table.AddColumn(#"Renamed Columns", "Overview Tile", each if Text.StartsWith([Action], "overview") and Text.Contains([Action], "featureadoption") then "Feature Adoption Tile"
else if Text.StartsWith([Action], "overview") and Text.Contains([Action], "opportunities") then "Opportunities Tile"
else if Text.StartsWith([Action], "overview") and Text.Contains([Action], "pilot") then "Pilots Tile"
else if Text.Contains([Action], "gainers") then "Top Gainers and Decliners Tile"
else if Text.Contains([Action], "decliners") then "Top Gainers and Decliners Tile"
else
"Any")
Do you know why it is too slow?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.