cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
MansRydell
Helper II
Helper II

Blanks wanted

Hi All

I´m trying to get measure below to only show values for columns Uppgift and År Månad(from date table).

Budgeterad kostnad =
SUMX (
'Fördelningsnyckel',
VAR __h =
CALCULATE ( SUM('Fördelningsnyckel'[Budget]))
RETURN
__h
)
Using this I get this:
Skärmklipp.PNG
What I´m after is that the values in the red box are Blank.

Tables:
Fact_Hours
Date------------Uppgift-Namn-Anteckningar
202201211BobHi
202201121LisaHo
202201042BorisHi
 
Dim_date date relation one way to hours date
Date_____________År Månad
202201012022 Januari
202201022022 Januari
etcetc
 
Dim_Fördelningsnykel Avdelning bidirectional relation to Hours Uppgift 
Avdelning---Budget
1100000
2200000

 

Any idees?

2 ACCEPTED SOLUTIONS
v-jayw-msft
Community Support
Community Support

Hi @MansRydell ,

 

You could use ISINSCOPE() or ISFILTER() function.

For example:

Measure = IF(ISINSCOPE('Table'[Namn]),BLANK(),[Budgeterad kostnad])
Result would be shown like below.
1.PNG
 
Best Regards,
Jay
Community Support Team _ Jay
If this post helps, then please consider Accept it as the solution
to help the other members find it.

View solution in original post

@v-jayw-msft Awsome!! that did it : ) thanks a bunch Buddy

/Måns

View solution in original post

3 REPLIES 3
v-jayw-msft
Community Support
Community Support

Hi @MansRydell ,

 

You could use ISINSCOPE() or ISFILTER() function.

For example:

Measure = IF(ISINSCOPE('Table'[Namn]),BLANK(),[Budgeterad kostnad])
Result would be shown like below.
1.PNG
 
Best Regards,
Jay
Community Support Team _ Jay
If this post helps, then please consider Accept it as the solution
to help the other members find it.

@v-jayw-msft Awsome!! that did it : ) thanks a bunch Buddy

/Måns

amitchandak
Super User
Super User

@MansRydell ,The information you have provided is not making the problem clear to me. Can you please explain with an example.

Appreciate your Kudos.

Helpful resources

Announcements
PBI Sept Update Carousel

Power BI September 2023 Update

Take a look at the September 2023 Power BI update to learn more.

Learn Live

Learn Live: Event Series

Join Microsoft Reactor and learn from developers.

Dashboard in a day with date

Exclusive opportunity for Women!

Join us for a free, hands-on Microsoft workshop led by women trainers for women where you will learn how to build a Dashboard in a Day!

MPPC 2023 PBI Carousel

Power Platform Conference-Power BI and Fabric Sessions

Join us Oct 1 - 6 in Las Vegas for the Microsoft Power Platform Conference.

Top Solution Authors