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

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.

Reply

New column - value depends on another column

Capture.PNG

 

Hi, I can't figure this one out.

I want to add a column to this table which equals: 120/Number of times a 'Staff Num' occurs in the 'Staff Number' Column.

So if 49974 occured 60 times in Staff Number column, the new column would have 2 in every row that 49974 was in.

 

Any ideas?

 

Cheers

1 ACCEPTED SOLUTION

the number is still about 100 times higher than the number i am looking for.

 

That's ok, i'll just use constant lines.

 

cheers

View solution in original post

7 REPLIES 7
Phil_Seamark
Microsoft Employee
Microsoft Employee

Hi @michaelsparrow

 

Please try the following calculated column.  This formula assumes your table is called 'Table1'

 

New Column = 
VAR StaffCol = 'Table1'[StaffNum]
VAR X = CALCULATE(COUNTROWS('Table1'),FILTER('Table1','Table1'[StaffNum] = StaffCol))
VAR Y = 120 
RETURN DIVIDE(x,y)

This also treats your 120 as hardcoded.  If you'd like this to be dynamic and represent the number of rows in your table then let me know.

Phil


To learn more about DAX visit : aka.ms/practicalDAX

Proud to be a Datanaut!

Hi,

 

THanks a lot.

Isn't working exactly right, but getting close i think. I've changed it a little bit as you can see below.

However, the value in the 'New Column' is 50.44 whereas it should be a very small number. Looking to divide 280 by the number of times that MCFA shows up, then also the number of times CAT7, then also the number of times FAT7, all in the same column.

Cheers

 

Capture.PNG

Just change the last part of the formula from Divide(X,Y) to Divide(Y,X)

Hi @michaelsparrow

 

Is it a simple case of swapping the order of the X and Y in the DIVIDE function?

 

eg use DIVIDE(y,x) ?


To learn more about DAX visit : aka.ms/practicalDAX

Proud to be a Datanaut!

Ok thanks, close but still not the values i'm after. I think i might be going about it the wrong way.

 

To get the values I'm looking for I need to do the following:

120 / (The number of times "MCFA" occurs in the 'resource' column and at the same time "SICK" occurs in the 'detail' column)

120 / (The number of times "CAP" occurs in the 'resource' column and at the same time "SICK" occurs in the 'detail' column)

120 / (The number of times "FO" occurs in the 'resource' column and at the same time "SICK" occurs in the 'detail' column)

 

Ideally want these 3 things in the same Measure.

 

Thanks a lot

Could this be the tweak?

 

 

New Column = 
VAR StaffCol = 'Table1'[StaffNum]
VAR X = CALCULATE(COUNTROWS('Table1'),
FILTER(
'Table1',
'Table1'[StaffNum] = StaffCol && 'Table1'[Detail] = "Sick"
)
) VAR Y = 120 RETURN DIVIDE(x,y)

 


To learn more about DAX visit : aka.ms/practicalDAX

Proud to be a Datanaut!

the number is still about 100 times higher than the number i am looking for.

 

That's ok, i'll just use constant lines.

 

cheers

Helpful resources

Announcements
September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors
Top Kudoed Authors