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!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register 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
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 53 | |
| 51 | |
| 36 | |
| 15 | |
| 14 |
| User | Count |
|---|---|
| 92 | |
| 75 | |
| 41 | |
| 26 | |
| 25 |