Get certified in Microsoft Fabric—for free! For a limited time, the Microsoft Fabric Community team will be offering free DP-600 exam vouchers. Prepare now
Hi All, I am looking to extract latest value and most repeated value (if tie get max).
Item UOM Unit Price Order Date
Item1 EA 95.00 25-Jan-22
Item1 Carton 1,800.00 24-Feb-22
Item1 EA 95.00 19-Feb-22
Item1 EA 80.00 1-Mar-22
Result should be like this:
Item UOM Latest Unit Price Most Repeated
Item1 EA 80 95
Looking for dax meaure not calculated column measure.
Solved! Go to Solution.
@shareezsaleem try by creating below Measures
UOM = var T1 = SUMMARIZE('Table','Table'[UOM],"Count",COUNTROWS('Table'))
var T2 = MAXX(T1,[Count])
return
MAXX( T1, IF([Count] = T2,'Table'[UOM]))
Latest Unit Price = var _M = MAXX('Table','Table'[Order Date])
return
CALCULATE(MAX('Table'[Unit Price]),'Table'[Order Date] = _M)
Most Repeated = var T1 = SUMMARIZE('Table','Table'[Unit Price],"Count",COUNTROWS('Table'))
var T2 = MAXX(T1,[Count])
return
MAXX( T1, IF([Count] = T2,'Table'[Unit Price]))
@shareezsaleem try by creating below Measures
UOM = var T1 = SUMMARIZE('Table','Table'[UOM],"Count",COUNTROWS('Table'))
var T2 = MAXX(T1,[Count])
return
MAXX( T1, IF([Count] = T2,'Table'[UOM]))
Latest Unit Price = var _M = MAXX('Table','Table'[Order Date])
return
CALCULATE(MAX('Table'[Unit Price]),'Table'[Order Date] = _M)
Most Repeated = var T1 = SUMMARIZE('Table','Table'[Unit Price],"Count",COUNTROWS('Table'))
var T2 = MAXX(T1,[Count])
return
MAXX( T1, IF([Count] = T2,'Table'[Unit Price]))
Check out the October 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
113 | |
96 | |
91 | |
82 | |
69 |
User | Count |
---|---|
159 | |
125 | |
116 | |
111 | |
95 |