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
drrai66
Resolver I
Resolver I

Use Code from Formula Bar of One Conditional Column To create Other Conditional Columns

Hi Experts,

I have 3 fields in my data from which I want to Create 3 conditional Columns. The Conditions are same for all the 3 conditional columns to be created. I have created a Conditional Column as COLUMN1 as per the picture. Is there a way I can use the code in Formula Bar to create 2 more Conditional Columns from other 2 fields. I don't want to type in Conditions for other 2 Columns but want to use Highlighted code.

Thanks

Deepak

 

DeepakConditional.PNG

1 ACCEPTED SOLUTION
v-yuta-msft
Community Support
Community Support

Hi drrai66,

 

Based on your requirement, you want to add multiple columns in one function, right?

 

To achieve your requirement, you can write a custom function like below:

 

Table.AddColumns = (table as table, addedColumns as list) as table =>

        List.Accumulate(

            addedColumns,

            table,

            (t, d) => Table.AddColumn(t, d{0}, d{1}, d{2}?))

 

The result is like below and you can refer to my PBIX file here:

https://www.dropbox.com/s/4b3hk747pju86h9/For%20drrai66.pbix?dl=0

1.PNG 

 

Regards,

Jimmy Tao

View solution in original post

1 REPLY 1
v-yuta-msft
Community Support
Community Support

Hi drrai66,

 

Based on your requirement, you want to add multiple columns in one function, right?

 

To achieve your requirement, you can write a custom function like below:

 

Table.AddColumns = (table as table, addedColumns as list) as table =>

        List.Accumulate(

            addedColumns,

            table,

            (t, d) => Table.AddColumn(t, d{0}, d{1}, d{2}?))

 

The result is like below and you can refer to my PBIX file here:

https://www.dropbox.com/s/4b3hk747pju86h9/For%20drrai66.pbix?dl=0

1.PNG 

 

Regards,

Jimmy Tao

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.