Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

Reply
James_Ma
Helper I
Helper I

How to assign values for one Business division to another

Hi,

 

Can anyone help me with this request please?

 

I have a table visual in PowerBI where it shows the "Amount for Supplier costs" for 4 separate Business Areas.

 

i.e. PI = £2,971,586.04, TR = £122,591.57 fianl result should show PI = £0 and TR = £3,094,177.61

Charge TypeAmount for Supplier costsSupplierBusiness AreaInternal/External
Supplier costs£202,789.82HomeRefCorporateInterna
Supplier costs£0.00HomeRefINInternal
Supplier costs£2,971,586.04HomeRefPIInternal
Supplier costs£122,591.57HomeRefTRInternal

 

There is a measure used to calculate the Amount for Supplier costs:

Amount for Supplier costs =
CALCULATE(
    SUM('billing'[Amount]),
    'billing'[ChargeType]
        IN { "Supplier costs" }
)
2 ACCEPTED SOLUTIONS

Just looked at this again and added the Business area from the case table and  all seemed good, but PI has 0 values for internal and external, so ideally I need to add to the measure to only do this calc if the internal external column is internal.

Measure = SWITCH(SELECTEDVALUE('Case'[Business Area]),
"IN",[Amount for Supplier costs],
"Corporate",[Amount for Supplier costs],
"PI",0,
"TR",CALCULATE([Amount for Supplier costs],ALLSELECTED('Case'),'Case'[Business Area] IN {"PI", "TR"})
)

View solution in original post

Hi @James_Ma So you can try

Measure = 
IF(SELECTEDVALUE('Table'[Internal/External])="Internal",
SWITCH(SELECTEDVALUE('Case'[Business Area]),
"IN",[Amount for Supplier costs],
"Corporate",[Amount for Supplier costs],
"PI",0,
"TR",CALCULATE([Amount for Supplier costs],ALLSELECTED('Case'),'Case'[Business Area] IN {"PI", "TR"})
),
[Amount for Supplier costs])

 

Jing
If this post helps, please Accept it as Solution to help other members find it. Appreciate your Kudos!

View solution in original post

7 REPLIES 7
v-jingzhan-msft
Community Support
Community Support

Hi @James_Ma 

 

You can create a new measure like below and use it in the table visual. 

Measure = 
SWITCH(SELECTEDVALUE('billing'[Business Area]),
    "IN",[Amount for Supplier costs],
    "Corporate",[Amount for Supplier costs],
    "PI",0,
    "TR",CALCULATE([Amount for Supplier costs],ALLSELECTED('billing'),'billing'[Business Area] IN {"PI", "TR"})
    )

 

Best Regards,
Jing
If this post helps, please Accept it as Solution to help other members find it. Appreciate your Kudos!

Just looked at this again and added the Business area from the case table and  all seemed good, but PI has 0 values for internal and external, so ideally I need to add to the measure to only do this calc if the internal external column is internal.

Measure = SWITCH(SELECTEDVALUE('Case'[Business Area]),
"IN",[Amount for Supplier costs],
"Corporate",[Amount for Supplier costs],
"PI",0,
"TR",CALCULATE([Amount for Supplier costs],ALLSELECTED('Case'),'Case'[Business Area] IN {"PI", "TR"})
)

Hi @James_Ma So you can try

Measure = 
IF(SELECTEDVALUE('Table'[Internal/External])="Internal",
SWITCH(SELECTEDVALUE('Case'[Business Area]),
"IN",[Amount for Supplier costs],
"Corporate",[Amount for Supplier costs],
"PI",0,
"TR",CALCULATE([Amount for Supplier costs],ALLSELECTED('Case'),'Case'[Business Area] IN {"PI", "TR"})
),
[Amount for Supplier costs])

 

Jing
If this post helps, please Accept it as Solution to help other members find it. Appreciate your Kudos!

Hi Jing,

If I use this measure and there are no filters applied it still shows the PI amount, that is internal, in the PI total so does not count as 0 until I apply the "internal" filter in the visual?

Sorry if I am being a little dumb ob this one.

Thanks Jing, that works exactly how I need it to. Much appreicated help 

Hi Jing, thanks for that measure, just to say that hte Business Ares is from a different table called "Case" how would that effect the measure?

James_Ma
Helper I
Helper I

I needed to add that I wish to add teh Internal supplier costs from PI to the internal supplier costs for TR.

 

Helpful resources

Announcements
Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.

RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel1

Power BI Monthly Update - May 2024

Check out the May 2024 Power BI update to learn about new features.