Forum Discussion
Syk
4 years agoResident Rockstar
Using Dates for specific customers
Hello! I currently have this measure.. measure = CALCULATE([Digital Sales %], DATESBETWEEN('Accounting Date'[Dates],MIN('Accounting Date'[Dates]),MAX(Issues[Go Live Date]))) I have chart to lo...
tamerj1
4 years agoCommunity Champion
Hi Syk
I suppose you are slicing by "Customers" from 'Ship to Cutomer' table. If the Customer name is not available in the issues table you can add it to table visual as a measure
Go-Live Date =
CALCULATE (
SELECTEDVALUE ( Issues[Go Live Date] ),
CROSSFILTER ( 'Ship to Customer'[Customer Key], Issues[Customer Key], BOTH )
)