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

July 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more

Reply
noah44
Helper I
Helper I

Create a column based on multiple values

Hi,

 

I am building a report about power consumption per customer.

 

There are two types of values that I can get, let's say they are "w" and "s"

 

noah44_0-1647330982293.png

 

Now I want to create a column that contains "0" when an ID has only one type of values; and "1" when an ID has both types.

noah44_1-1647331164857.png

 

It could look like this. ID 1 has only "w" values so Cust. type is "0". ID 2 has both types so Cust. type is "1".

 

It is important that all rows of an ID get the same Cust. type even if there is only one different Value type.

 

 

Thanks 

Noah

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@noah44 , A new column

 

new column =
var _1 = countx(filter(Table, [ID] = earlier([ID]) && [Value Type] ="w"),[ID])
var _2 = countx(filter(Table, [ID] = earlier([ID]) && [Value Type] ="s"),[ID])
return
if(not(isblank(_1)) && not(Isblank(_2)), 1,0)

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

View solution in original post

1 REPLY 1
amitchandak
Super User
Super User

@noah44 , A new column

 

new column =
var _1 = countx(filter(Table, [ID] = earlier([ID]) && [Value Type] ="w"),[ID])
var _2 = countx(filter(Table, [ID] = earlier([ID]) && [Value Type] ="s"),[ID])
return
if(not(isblank(_1)) && not(Isblank(_2)), 1,0)

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
FabCon and SQLCon Barcelona 2026

FabCon & SQLCon – Barcelona 2026

Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.

60 days of Data Days Carousel

Data Days 2026

Join Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Top Solution Authors