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.
Hi,
in my datasheet, I have similar data which is repeated in different ways, and I want to combine them under one title and perform an average calculation of their values. for example, under the column "JOB_TITLE" several options for an assistant. I want to combine all of them to under only "assistant" and for column "YEAR_SALARY" I want to average all the values.
(There is a problem with placing the full image here, so here's the URL)
https://i.ibb.co/LY6s1Hb/2021-05-31-19-54-49.jpg
Thanks for all the helpers (:
Solved! Go to Solution.
Hey @aditamir ,
I would group them in Power Query. Add a new column and check for certain criteria.
You could check if the name starts with "ASSISTANT" with the Text.StartsWith function.
For example:
Text.StartsWith([Job_Title], "ASSISTANT")
Hey @aditamir ,
I would group them in Power Query. Add a new column and check for certain criteria.
You could check if the name starts with "ASSISTANT" with the Text.StartsWith function.
For example:
Text.StartsWith([Job_Title], "ASSISTANT")