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
BB9
Frequent Visitor

DAX expression help

Hi,

I am trying to generate a new column based on two other columns, and not able to get this to work.

 

Item1     1/1/21     8

Item1      1/1/21    8

Item1      1/1/21    8

Item1     1/2/21     9

Item1      1/2/21    9

Item2     1/1/21     10

Item2      1/1/21    10

Item2     1/2/21     8

Item2      1/2/21    8

 

 

Desired Output:

Item1     1/1/21     8

Item1      1/1/21    0

Item1      1/1/21    0

Item1     1/2/21     9

Item1      1/2/21    0

Item2     1/1/21     10

Item2      1/1/21    0

Item2     1/2/21     8

Item2      1/2/21    0

 

Basically, a new column should show the average of the number per item per date in one column and the other columns as 0 for the remaining rows for the same item and date.

 

Hope my question is not confusing.

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@BB9 , first you need to add an index in the power query.

 

Then a new column

new column =
var _min = minx(filter(Table, [item] = earlier([item]) && [date] = earlier([date])),[Index])
var _avg = minx(filter(Table, [item] = earlier([item]) && [date] = earlier([date])),[value])
return
if([Index] =_min, _avg, blank())

View solution in original post

2 REPLIES 2
BB9
Frequent Visitor

Thank you @amitchandak for the quick response. It worked like a gem!

amitchandak
Super User
Super User

@BB9 , first you need to add an index in the power query.

 

Then a new column

new column =
var _min = minx(filter(Table, [item] = earlier([item]) && [date] = earlier([date])),[Index])
var _avg = minx(filter(Table, [item] = earlier([item]) && [date] = earlier([date])),[value])
return
if([Index] =_min, _avg, blank())

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.