cancel
Showing results for 
Search instead for 
Did you mean: 

Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.

Reply
ovonel
Post Prodigy
Post Prodigy

Prevent spliting when using LYTD (pbix attached)

I have this pbix : https://drive.google.com/file/d/1tpGKvL_ST1L7YgDkDFqqLqfKb0FEjfcL/view?usp=sharing

 

I have a single selection filter on Year, and when I select 2021:

ovonel_0-1632382263676.png

 

 

My goal is to never split a given Customer on Type, so, when I show the totals, I want to see: Net Revenue LYTD as 54 but in Locale, not in Inter:

 

 

ovonel_1-1632382310373.png

 

I cannot harcode it... Many clients can belong to the same type.

 

Also a client changing 'type' can happen with more than one client in the future (or different type names). The only good thing is: if they switch, they do it on 01-Jan.

3 REPLIES 3
BeaBF
Impactful Individual
Impactful Individual

@ovonel If you want to see all the totals only on the "Local" type, why do you put the other types in key?

The purpose of your request is not clear to me.

Could you show the expected result and what you fail to do?

 

B.

Thanks for your answer @BeaBF ,

 

My expected output is:

(when 2021 is selected):

ovonel_0-1632395680358.png

 

 

When 2020 is selected... it should work as it is already working:

ovonel_1-1632395705237.png

 

This measure gets your example result.

It first builds a table of Revenue LYTD for each inscope customer ignoring Type, then aggregates for the final result.

 

Net Revenue LYTD = 
VAR _CustomerLYTD = 
ADDCOLUMNS(
    VALUES(Revenue[Customer]),
    "@LYTD", CALCULATE([Net Revenue YTD], SAMEPERIODLASTYEAR('Date'[Date]), REMOVEFILTERS('Type') )
)
VAR _Result = SUMX(_CustomerLYTD, [@LYTD])
RETURN
    _Result

 

Helpful resources

Announcements
PBI November 2023 Update Carousel

Power BI Monthly Update - November 2023

Check out the November 2023 Power BI update to learn about new features.

Community News

Fabric Community News unified experience

Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.

Power BI Fabric Summit Carousel

The largest Power BI and Fabric virtual conference

130+ sessions, 130+ speakers, Product managers, MVPs, and experts. All about Power BI and Fabric. Attend online or watch the recordings.

Top Solution Authors
Top Kudoed Authors