Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Vote for your favorite vizzies from the Power BI Dataviz World Championship submissions. Vote now!
I have two ORGCODE, the CDW and the SGW,
How do i get the FIXED Level of detail value for the SEGMENT in multiplying the;
Fixed Segments = Cost in ORGCODE = SGW multiply by the Qty Rate in ORGCODE = CDW.
In Tableau : FIXED [SEGMENTS]: MIN(IF [ORGCODE]="SGW" THEN [ITEM_COST] END)} * [QUANTITY_RATE])
How about in Power BI?
Solved! Go to Solution.
Hi, @Anonymous
I am not familiar with formulas in Tableau.
Did you want to group by Segments in powerbi to get the minimum value of [ITEM_COST] * [QUANTITY_RATE]) ?
Please try formula as nelow:
M_Cost =
CALCULATE (
MAX ( 'Table'[Cost] ),
FILTER (
ALL ( 'Table' ),
'Table'[ORGCODE] = "SGW"
&& 'Table'[SEGMENTS] = MAX ( 'Table'[SEGMENTS] )
)
)
M_Rate =
CALCULATE (
MAX ( 'Table'[Rate] ),
FILTER (
ALL ( 'Table' ),
'Table'[ORGCODE] = "CDW"
&& 'Table'[SEGMENTS] = MAX ( 'Table'[SEGMENTS] )
)
)
FIXED Level of detail value =
[M_Cost]*[M_Rate]
Please check my sample file for more details.
If doesn't meet your requirement , please explain the formula in detail.It will be better if you can share you expected in excel.
Best Regards,
Community Support Team _ Eason
Hi, @Anonymous
I am not familiar with formulas in Tableau.
Did you want to group by Segments in powerbi to get the minimum value of [ITEM_COST] * [QUANTITY_RATE]) ?
Please try formula as nelow:
M_Cost =
CALCULATE (
MAX ( 'Table'[Cost] ),
FILTER (
ALL ( 'Table' ),
'Table'[ORGCODE] = "SGW"
&& 'Table'[SEGMENTS] = MAX ( 'Table'[SEGMENTS] )
)
)
M_Rate =
CALCULATE (
MAX ( 'Table'[Rate] ),
FILTER (
ALL ( 'Table' ),
'Table'[ORGCODE] = "CDW"
&& 'Table'[SEGMENTS] = MAX ( 'Table'[SEGMENTS] )
)
)
FIXED Level of detail value =
[M_Cost]*[M_Rate]
Please check my sample file for more details.
If doesn't meet your requirement , please explain the formula in detail.It will be better if you can share you expected in excel.
Best Regards,
Community Support Team _ Eason
Vote for your favorite vizzies from the Power BI World Championship submissions!
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 58 | |
| 53 | |
| 43 | |
| 17 | |
| 16 |
| User | Count |
|---|---|
| 122 | |
| 108 | |
| 44 | |
| 32 | |
| 24 |