The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
I have a field which follows the layout as follows: ID-Name (i.e. 123-henry)
I want to (for example above) create a URL Measure that looks like this: app.powerbi.com/ID=123.
I tried this DAX syntax (Kudos ChatGPT):
URL Measure = "app.powerbi.com/ID=" & SUBSTITUTE([ID-Name field], "-", "")
And got the following error:
"(...) a measure formula refers to a column that contains many values without specifying an aggregation (...)"
Pls help 🙂
You could try to create a calculated column with the same code.
Then you can use the new filed.
Mark as solution if i help you.
Ciao