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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more

Reply
Anonymous
Not applicable

Exclude one dimension in a certain month in a visual

Hello Guys,

 

In my dataset I got a planning category lets say Category A. This category shows actual data for January and planning data for the other months in the year. 

 

To compare my planning with my actuals i need to ad the category actuals in my visuals. This category show actuals for all months. (at this point in time actuals until feb). 

 

I my visual i added category A en Category actuals. My problem is:  January shows the actuals twice. Once for category A and once for category actuals. It should only show category actuals for Jan. 

 

Is it possible to exclude Jan in the visual for Category A? 

1 ACCEPTED SOLUTION
Anonymous
Not applicable

I solved it by adding a column using M:

 

Actuals = 
if [Category] = "Actuals" and [Audittrail] = "upload" then [Signdata] else " "

My actual formula is a bit more complex because of my dataset but it is following the above logic. 

 

View solution in original post

4 REPLIES 4
v-jiascu-msft
Microsoft Employee
Microsoft Employee

Hi @Anonymous,

 

Can you share a sample? Please mask the sensitive first.

The solution could be filtering out one actual data in a measure. But that depends on the data structure.

 

Best Regards,

Community Support Team _ Dale
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Anonymous
Not applicable

@v-jiascu-msft The data is build as follows:

 

CategoryAudittrailSigndata
Actualsupload2
Category Ainput3
Category Aupload4

 

All actual data is saved in my audittrail upload. The meassure should filter out audittrail upload for category A. 

 

Many thanks for your reply!

Anonymous
Not applicable

I solved it by adding a column using M:

 

Actuals = 
if [Category] = "Actuals" and [Audittrail] = "upload" then [Signdata] else " "

My actual formula is a bit more complex because of my dataset but it is following the above logic. 

 

Anonymous
Not applicable

Thanks for your reply. The logic works in my model 🙂 

 

But following this logic i have antoher question 🙂 

 

In a visual i need to compare my actuals with my planning. Is it possible to show Category A for the months for example jan - dec and Actuals for the months feb - dec ? (interval will be different when comparing actuals with a different category).

 

many thanks!

Helpful resources

Announcements
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!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

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

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 Solution Authors