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

Level up your Power BI skills this month - build one visual each week and tell better stories with data! Get started

Reply
arvindyadav
Post Partisan
Post Partisan

How to achieve Targeted value based on 1st day of month profit in power bi

Hi Team,

 

How to achieve Targeted value based on 1st day of month profit in power bi?

Suppose I made $42000 on 1st Dec 2019 and I want to achieve the target on this month $2M($2000000) so how can I do that in Power BI. Basically, what is the next profit value of every next day in the table?

Based on the previous day.

for more info please check the image

 

Target.PNG

 

Thanks,

Arvind

5 REPLIES 5
v-joesh-msft
Solution Sage
Solution Sage

Hi @arvindyadav ,

You can create measures similar to the following:

 

Remaining target =
VAR Target = 2000000
RETURN
    Target - CALCULATE ( SUM ( 'Table'[Profit] ), ALL ( 'Table' ) )
Averagedayprofit =
VAR Target = 2000000
VAR _noblankrow =
    COUNTBLANK ( 'Table'[Profit] )
RETURN
    DIVIDE (
        Target - CALCULATE ( SUM ( 'Table'[Profit] ), ALL ( 'Table' ) ),
        _noblankrow
    )

 

 Results are as follows:

1.PNG

Here is a demo, please try it:

https://qiuyunus-my.sharepoint.com/:u:/g/personal/pbipro_qiuyunus_onmicrosoft_com/Eb_bOOtDrbBNgmewA1...

Best Regards,

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

Hi @v-joesh-msft ,

 

If I don't have future dates entry it also reflect the value?

Hi @v-joesh-msft ,

 

Not getting what I needed here 1st-day value is $70306 and I need one more column that's name is Projected Gross Revenue so based on my 1st day of the month I want to know that what is 2nd-day value, 3rd-day value,... so on last day of month value so that I can reach 2M gross revenue.

Basically I want as :-

Format.PNG

 

So projected Gross revenue is based on 2M targets and 1st day of the monthly gross revenue.

 

Thanks,

Arvind

 

Hi @arvindyadav ,

I'm a little confused by your description. 57217.25 is not reflected in your sample data. Is there any relationship between this value and other data? Could you please share your calculation logic?

Best Regards,

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

Hi @v-joesh-msft ,

 

So Sorry the 1st-day value is 70306 which comes from a dataset and the projected gross revenue is based on the targeted and 1st-day value of the month. So how to find 2nd or 1st-day value to till last day projected gross revenue to achieve targeted value i.e, 2million in the month.

where projected gross revenue is an assumption by me. Is there a way to get projected gross revenue based on 1st-day value and targeted value so that we can know how much revenue we achieve day by day based on the actual gross revenue.

 

Thanks,

Arvind

Helpful resources

Announcements
April Power BI Update Carousel

Power BI Monthly Update - April 2026

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

Fabric SQL PBI Data Days

Data Days 2026 coming soon!

Sign up to receive a private message when registration opens and key events begin.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.