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

Vote for your favorite vizzies from the Power BI Dataviz World Championship submissions. Vote now!

Reply
ArielCz91
Frequent Visitor

Sales value of lost contractors

I need a measure that will sum up the sales value of contractors for 12 months who have not made purchases in the last 12 months. This value is supposed to be the sum of purchases from the 13th to the 24th month back. The measure of sales is SprWdPH

 

Thank for help

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi  @ArielCz91 ,

I created some data:

Sorry, not quite sure what you mean, do you want to add up the amounts for the next 12 months for those who have not made purchases in the last 12 months?

vyangliumsft_0-1698738748304.png

 

Here are the steps you can follow:

1. Create measure.

 

Flag =
var _today=TODAY()
var _last12=DATE(YEAR(_today)-1,MONTH(_today),DAY(_today))
var _Next12=DATE(YEAR(_today)+1,MONTH(_today),DAY(_today))
var _column=SELECTCOLUMNS(FILTER(ALL('Table'),'Table'[contractors]=MAX('Table'[contractors])&&'Table'[Date]>=_last12&&'Table'[Date]<=_today),"pur",[purchases])
return
IF(
    "No" in _column&&MAX('Table'[Date])>_today&&MAX('Table'[Date])<=_Next12,1,0)
Measure =
SUMX(
    ALLSELECTED('Table'),[SprWdPH])

 

2. Place [Flag]in Filters, set is=1, apply filter.

vyangliumsft_1-1698738748304.png

3. Result:

vyangliumsft_2-1698738794403.png

If it doesn't meet your desired outcome, can you share sample data and sample output in table format? Or a sample pbix after removing sensitive data. We can better understand the problem and help you.

 

Best Regards,

Liu Yang

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

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

Hi  @ArielCz91 ,

I created some data:

Sorry, not quite sure what you mean, do you want to add up the amounts for the next 12 months for those who have not made purchases in the last 12 months?

vyangliumsft_0-1698738748304.png

 

Here are the steps you can follow:

1. Create measure.

 

Flag =
var _today=TODAY()
var _last12=DATE(YEAR(_today)-1,MONTH(_today),DAY(_today))
var _Next12=DATE(YEAR(_today)+1,MONTH(_today),DAY(_today))
var _column=SELECTCOLUMNS(FILTER(ALL('Table'),'Table'[contractors]=MAX('Table'[contractors])&&'Table'[Date]>=_last12&&'Table'[Date]<=_today),"pur",[purchases])
return
IF(
    "No" in _column&&MAX('Table'[Date])>_today&&MAX('Table'[Date])<=_Next12,1,0)
Measure =
SUMX(
    ALLSELECTED('Table'),[SprWdPH])

 

2. Place [Flag]in Filters, set is=1, apply filter.

vyangliumsft_1-1698738748304.png

3. Result:

vyangliumsft_2-1698738794403.png

If it doesn't meet your desired outcome, can you share sample data and sample output in table format? Or a sample pbix after removing sensitive data. We can better understand the problem and help you.

 

Best Regards,

Liu Yang

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

FreemanZ
Community Champion
Community Champion

hi @ArielCz91 ,

 

try to add some sample data and you will get a solution quicker. 

Helpful resources

Announcements
Power BI DataViz World Championships

Power BI Dataviz World Championships

Vote for your favorite vizzies from the Power BI World Championship submissions!

Sticker Challenge 2026 Carousel

Join our Community Sticker Challenge 2026

If you love stickers, then you will definitely want to check out our Community Sticker Challenge!

January Power BI Update Carousel

Power BI Monthly Update - January 2026

Check out the January 2026 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.