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
abhiram342
Employee
Employee

DAX measure to get first value in selected group

Hi All,

I want to create dax measure for below scenario. Can some please help 

Table1:

IdTypeOfferValue
1R1A100
1R1C100
1R2C100
1R2A100

 

Table2:

IdName
1PBI

 

Table1 & Table2 are related based on Id.

 

Expected Results : For selected Column, I should perform group by operation and get First Value for that group

 

Expected Result1:

NameValue
PBI100

Expected Result2:

TypeNameValue
R1PBI100
R2PB1100

 

 

Thanks,

Abhiram

2 ACCEPTED SOLUTIONS
amitchandak
Super User
Super User

@abhiram342 , Hope both tables are joined on ID

 

Use a measure like this for value

 

Measure =
VAR __id = MAX ('Table'[ID] )
VAR __date = CALCULATE ( Min('Table'[Offer] ), ALLSELECTED ('Table' ), 'Table'[ID] = __id )
return
CALCULATE ( sum ('Table'[Value] ), VALUES ('Table'[ID] ),'Table'[ID] = __id,'Table'[Offer] = __date )

 

 

All columns are from table1 here . Use ID from Table 1 in visual

View solution in original post

@abhiram342 , refer if the attached file can help

 

 

View solution in original post

4 REPLIES 4
amitchandak
Super User
Super User

@abhiram342 , Hope both tables are joined on ID

 

Use a measure like this for value

 

Measure =
VAR __id = MAX ('Table'[ID] )
VAR __date = CALCULATE ( Min('Table'[Offer] ), ALLSELECTED ('Table' ), 'Table'[ID] = __id )
return
CALCULATE ( sum ('Table'[Value] ), VALUES ('Table'[ID] ),'Table'[ID] = __id,'Table'[Offer] = __date )

 

 

All columns are from table1 here . Use ID from Table 1 in visual

Thanks @amitchandak For each Id the value is same. Intially, I have designed model as below and was doing max for each selected column but it didn't worked.

Example:  For Offer A, I should get 300 . Please let me know If I need to update the measure

 

Table2:

IdValue
1100
2200

Table1:

IdTypeOffer
1R1A
1R1C
1R2C
1R2A
2R3A

@abhiram342 , refer if the attached file can help

 

 

thank you @amitchandak!

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