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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
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")