Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

Formula to group similar strings under one "group" string

Hello,

 

I apologize if I worded my question wrong.

 

I'll try to explain. In an excel workbook database that I'm using to power my report in Power BI, I have several different Roles that are associated with a unique User ID that is assigned to each employee.

 

Some examples of different roles we have in the database are subgroups of a larger role. For example, the Project Engineer role contains sub-roles like Project Engineer - Sr, Project Engineer - Jr, Project Engineer - Intern, etc.

 

All of the Roles default in sub-role form when reports are generated from our data warehouse, and to simplify the data in the Dashboard, I'd like all of the sub-roles to appear as their larger parent roles in a calculated column.

 

For example, the formula would test the existing column to see if it contains the string Project Engineer, and would then return "Project Engineer" in the calculated column if it does. I'd have to do these for several other parent roles as well.

 

Can anyone help me with a dax formula that can accomplish this? I'd really appreciate it.

 

Thanks,

 

Josh

1 ACCEPTED SOLUTION
zozozo
Frequent Visitor

I dont think you need to make a custom column for this kind of grouping anymore..

Power BI already have the grouping feature released in the October, you can read it in this link October feature summary

 ...

 

in case you rather using dax custom column for grouping than using the power bi gui feature.

you can use nested IF, ISERROR, and SEARCH function :

 

for single group, ex:

 

Group = IF(ISERROR(SEARCH("project engineer", Yourtable[YourRoleColumn])),"Other","Project Engineer")

from dax above, every value that had text "project engineer" inside of it will become "Project Engineer" group and the rest become "Other" group

 

for 2 or more group use nested IF,

ex:

 

Group = IF(ISERROR(SEARCH("project engineer", Yourtable[YourRoleColumn])),IF(ISERROR(SEARCH("developer", Yourtable[YourRoleColumn])),"Other","Developer"),"Project Engineer")

 

note:

- search function is case-insensitive.

 

- iserror(search()) will return TRUE value if it didn't find the word so IF statement will read the TRUE and return the <value_if_true>, so you need to put the wrong value in the <value_if_true> and the right value in the <value_if_false>...

with this we can put the nested IF inside the <value_if_true>  from another if , so it become like this:

 

IF(<logical_test>,IF(<logical_test>,<value_if_true>,<value_if_false>),<value_if_false>)

 

 reference:

IF Function

Search Function

ISERROR Function

 

 

Thanks~

 

 edit: my potato english

 

My first time answering a question ... yay

View solution in original post

2 REPLIES 2
zozozo
Frequent Visitor

I dont think you need to make a custom column for this kind of grouping anymore..

Power BI already have the grouping feature released in the October, you can read it in this link October feature summary

 ...

 

in case you rather using dax custom column for grouping than using the power bi gui feature.

you can use nested IF, ISERROR, and SEARCH function :

 

for single group, ex:

 

Group = IF(ISERROR(SEARCH("project engineer", Yourtable[YourRoleColumn])),"Other","Project Engineer")

from dax above, every value that had text "project engineer" inside of it will become "Project Engineer" group and the rest become "Other" group

 

for 2 or more group use nested IF,

ex:

 

Group = IF(ISERROR(SEARCH("project engineer", Yourtable[YourRoleColumn])),IF(ISERROR(SEARCH("developer", Yourtable[YourRoleColumn])),"Other","Developer"),"Project Engineer")

 

note:

- search function is case-insensitive.

 

- iserror(search()) will return TRUE value if it didn't find the word so IF statement will read the TRUE and return the <value_if_true>, so you need to put the wrong value in the <value_if_true> and the right value in the <value_if_false>...

with this we can put the nested IF inside the <value_if_true>  from another if , so it become like this:

 

IF(<logical_test>,IF(<logical_test>,<value_if_true>,<value_if_false>),<value_if_false>)

 

 reference:

IF Function

Search Function

ISERROR Function

 

 

Thanks~

 

 edit: my potato english

 

My first time answering a question ... yay

Anonymous
Not applicable

Zozo,

 

Thanks so much for the detailed reply. I ended up doing a variation of the IF function to address this initially. I just wish I knew about the grouping function in Power BIs GUI before taking the time to write the rather lengthy formula that it took to address all the sub-roles. I'd much rather address things like this at the report level if possible.

 

Thanks again,

 

Josh

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors