Hi,
I'm struggling to get this to work, any solutions would be much appreciated.
- data shows forecasted and actual sales for the year.
- data has two date cells, 'projected close date' and 'actual close date'. i.e. when we think it's going to land and when it actually landed.
- want to create a pivot chart and pivot table with one common date field. i.e. to show forecast and actual figures per month and overlay forecast and actual over each other on a chart.
- I've been trying to get measures to work with a USERELATIONSHIP but not sure on correct formula
Thanks!
I'm struggling to get this to work, any solutions would be much appreciated.
- data shows forecasted and actual sales for the year.
- data has two date cells, 'projected close date' and 'actual close date'. i.e. when we think it's going to land and when it actually landed.
- want to create a pivot chart and pivot table with one common date field. i.e. to show forecast and actual figures per month and overlay forecast and actual over each other on a chart.
- I've been trying to get measures to work with a USERELATIONSHIP but not sure on correct formula
Excel Formula:
= CALCULATE (
data[Projected closing date],
USERELATIONSHIP ( data[Actual closing date], 'Calendar'[Date] )
)
Thanks!