Forum Discussion
SachinNamdeo-20
3 years agoHelper II
For current date
" How can i get current date dynamically ,today function only give me last date of my data table but i want to calculate date dynamically if i select any date of calender it gives me that date not t...
- 3 years agoDD_Current =VAR MN_Date = MIN('Date'[Date])VAR Result = DATE(YEAR(TODAY()),MONTH(MN_Date),DAY(MN_Date))RETURNResultI hope it is helpful for you.
Mahesh0016
3 years agoSuper User
DD_Current =
VAR MN_Date = MIN('Date'[Date])
VAR Result = DATE(YEAR(TODAY()),MONTH(MN_Date),DAY(MN_Date))
RETURN
Result
I hope it is helpful for you.
- SachinNamdeo-203 years agoHelper II
Thanks sir.