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

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.

Reply
Anonymous
Not applicable

Visualizing the Monthly Value of an Offer Base

Hey PBI pro's,

 

I'm a complete newbie with PowerBi (more familiar with python and R) and I am trying to create a report for our sales managers to follow the total amount of our offers we have made and how big our offer base is money wise. The problem is I am trying to visualize a 24-month trend of our offers, so how do I create a measure that will visualize the amount per month? 

 

The data looks something as follows:

 

ClientOffer AmountOffer Submition DateOffer Accepted/Rejected Date
Barley's200€01.02.202031.03.2020
Mickie Dees1000€10.03.2020 
Burger Queen2000€10.04.202030.06.2020

 

So from this data, how would I create a visualization that shows the total amount of offers in February is 200€, March is 1200€, In April/May and June it's 3000€ and in July it's 1000€ again? This is an issue with two date dimensions I think, but as I am new to Power Bi I have no idea how to solve it!

 

Thanks in advance,

 

Jeppe

1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@Anonymous , refer if these 2 can help

https://community.powerbi.com/t5/Community-Blog/HR-Analytics-Active-Employee-Hire-and-Termination-trend/ba-p/882970

https://www.dropbox.com/s/bqbei7b8qbq5xez/leavebetweendates.pbix?dl=0

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

View solution in original post

4 REPLIES 4
v-xicai
Community Support
Community Support

Hi @Anonymous ,

 

You may create calendar table firstly, then create measure like DAX below.

 

Table:

Calendar=CALENDARAUTO()



Measure:

Offer Distribution =
VAR _Date =
    SELECTEDVALUE ( 'Calendar'[Date] )
RETURN
    CALCULATE (
        SUM ( Table1[Offer Amount] ),
        FILTER (
            Table1,
            Table1[Offer Submition Date] <= _Date
                && _Date <= Table1[Offer Accepted/Rejected Date]
        )
    )

 

You may choose Clustered Column chart to display the result, put 'Calendar'[Date] into X axis box of chart visual, and put [Offer Distribution] into Values box.

 

Best Regards,

Amy 

 

Community Support Team _ Amy

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

 

Anonymous
Not applicable

Hi @v-xicai 

 

Thank you for your tip, but this measure does not return anything for me. The visual is blank.

 

Jerry

amitchandak
Super User
Super User

@Anonymous , refer if these 2 can help

https://community.powerbi.com/t5/Community-Blog/HR-Analytics-Active-Employee-Hire-and-Termination-trend/ba-p/882970

https://www.dropbox.com/s/bqbei7b8qbq5xez/leavebetweendates.pbix?dl=0

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

Thank you for your reply and tips! 

Helpful resources

Announcements
September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 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
Top Kudoed Authors