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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Maker
New Member

How to HIDE constant value from future dates

Hello!

 

I have two tables: Date that is a CALENDAR with all dates and Meterage with a number value for dates from Dec 1 to 9.

There is a One-to-Many relationship between the tables via the Dates columns.
 

I can plot the Meterage on a Column Chart in a way so that the X axis (horizontal) will show all the days for December 1-31, whereas the Meterage will only fill the days 1 to 9, activating Show Items with no Data.

1.png

 

However, I need to add a constant value to the Meterage, so I created a Measure like this:
Measure = SUM('Meterage'[Meterage])+10000 // just a constant number to add.


Now if I switch the Meterage with the Measure to plot on the graph and get the constant number filled all the way through December.  
 

2.png

How can I limit/restrict this and keep it only up to Dec 9, i.e. the Max Date in the Meterage table?

1 ACCEPTED SOLUTION

Is there a reason you use DIVIDE instead of this?

IF ( ISBLANK ( _sum ), BLANK(), _sum + _constant )

View solution in original post

5 REPLIES 5
Ashish_Mathur
Super User
Super User

Hi,

Ensure that the last date in the Calendar table is today.


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/
parry2k
Super User
Super User

@Maker this is what I will do to avoid recalculation of the sum

 

Sum with constant = 
VAR __sum = SUM ( 'Meterage'[Meterage] )
VAR __constant = 10000
RETURN
( __sum + __constant ) * DIVIDE ( __sum, __sum )

 

Follow us on LinkedIn

 

Learn about conditional formatting at Microsoft Reactor

My latest blog post The Power of Using Calculation Groups with Inactive Relationships (Part 1) (perytus.com) I would  Kudos if my solution helped. 👉 If you can spend time posting the question, you can also make efforts to give Kudos to whoever helped to solve your problem. It is a token of appreciation!

 

Visit us at https://perytus.com, your one-stop-shop for Power BI-related projects/training/consultancy.



Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!

Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo

If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤


Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.

Is there a reason you use DIVIDE instead of this?

IF ( ISBLANK ( _sum ), BLANK(), _sum + _constant )
VijayP
Super User
Super User

@Maker 
if(ISBLANK(SUM('Meterage'[Meterage])),blank(),SUM('Meterage'[Meterage]))




Did I answer your question? Mark my post as a solution! Appreciate your Kudos!!
MY Blog || My YouTube Channel || Connect with me on Linkedin || My Latest Data Story - Ageing Analysis

Proud to be a Super User!


I think you forgot the +10000 constant in the last argument.

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.