Forum Discussion
Trist
5 years agoFrequent Visitor
date ıssue
Hi , ı have questıon about brınging selected date to maın table which is customer. ı have date field in date table as - selected date =selectedvalue('DATE'[actualdate])- and what ı wanna do is th...
- 5 years ago
Hi, Trist
Based on your description, i created data to reproduce your scenario. The pbix file is attached in the end.
Source:
Date(a calculated table):
Date = CALENDAR( DATE(2020,1,1), DATE(2021,12,31) )You may create a measure like below.
Result = MAX('Date'[ActualDate])Result:
Best Regards
Allan
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
v-alq-msft
5 years agoCommunity Support
Hi, Trist
Based on your description, i created data to reproduce your scenario. The pbix file is attached in the end.
Source:
Date(a calculated table):
Date =
CALENDAR(
DATE(2020,1,1),
DATE(2021,12,31)
)
You may create a measure like below.
Result = MAX('Date'[ActualDate])
Result:
Best Regards
Allan
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.