Forum Discussion
Daniel_D
4 years agoRegular Visitor
Create rows based on date values
Trying to create a report from a CRM system to project coming revenue. Unfortunately the build in reporting is not made for subscription services. For each sales case we get one row with expected sta...
- 4 years ago
ryan_mayu
4 years agoSuper User
you can create two columns
Column =
VAR _date=maxx(FILTER('Table','Table'[expected_start_date]<='Table (2)'[date]),'Table'[expected_start_date])
return maxx(FILTER('Table','Table'[expected_start_date]=_date),'Table'[deal_name])
Column2 =
VAR _date=maxx(FILTER('Table','Table'[expected_start_date]<='Table (2)'[date]),'Table'[expected_start_date])
return maxx(FILTER('Table','Table'[expected_start_date]=_date),'Table'[monthly_value])
pls see the attachment below.
I am curious why 11/1 is not client 2 and 13000?