Forum Discussion
Multiple Dates for funnel-ish!
- 8 years ago
Hi AlAlawiAlawi,
Data1 has been auto generated by using Power Query. So the end user will maintain data the way you uploaded it. The internal process will create Data1 and get your desired result. The end result is much simpler DAX Formulas as compared to my first solution.
You need a calendar table. https://exceleratorbi.com.au/power-pivot-calendar-tables/
Then you need 2 relationships, one for each of your date columns. https://exceleratorbi.com.au/multiple-relationships-between-tables-in-dax/
- AlAlawiAlawi8 years agoHelper I
Thank you for the response; Ill check this solution and reply back today if possible. Appreciate your reply dear.
- AlAlawiAlawi8 years agoHelper I
Thank you very much for the Eye Opener (I suppose I would need to redo my Dashboards now since I would change most of the Dates field previously used to the New Table But anyway ... Thats not my problem now.
I had created a New Date Table and a Date Column to create all the necessary dates that would be needed ever and had reached to this as my current problem;
New Leads = CALCULATE(Leads[Leads] ,
USERELATIONSHIP('Date'[Date] , Leads[Inbound Date] && Leads[Order Date] && Leads[Invoice Date] ))
I need the Value to be calculated based on multiple relationships of Date Columns as shown above ..
Leads[Leads] = Distinct Count of Client ID
In Other Words if the Client had a call in Jan a Order in June and Invoice in November; he would show on all the 3 months.
FYI also ... All the 3 Date Columns are in the same table as illustrated in the example initially.