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

The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more

Reply
Anonymous
Not applicable

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
Anonymous
Not applicable

Hi @Anonymous ,

 

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

View solution in original post

Anonymous
Not applicable

@Anonymous Awsome!! that did it : ) thanks a bunch Buddy

/Måns

View solution in original post

3 REPLIES 3
Anonymous
Not applicable

Hi @Anonymous ,

 

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
Anonymous
Not applicable

@Anonymous Awsome!! that did it : ) thanks a bunch Buddy

/Måns

amitchandak
Super User
Super User

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

Appreciate your Kudos.

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

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

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Kudoed Authors