Can someone please help me on how to add last day of next month as a default date? I already have first day of next month set as - Date(Year(Today()), Month(Today())+1, 1)
Solved! Go to Solution.
Hi @VS325 ,
Just a thought, use:
DateAdd(
Date(Year(Today()), Month(Today())+2, 1),
-1,
Days
)
Hope it helps !
Hi @VS325 ,
Just a thought, use:
DateAdd(
Date(Year(Today()), Month(Today())+2, 1),
-1,
Days
)
Hope it helps !
Thank you so much. Yes that works. I tried this also which works.
DateAdd(
DateAdd(
Date(
Year(Today()),
Month(Today()) + 1,
1
),
1,
Months
),
-1,
Days
)
Yes, is the same logic. But you do an extra operation. ๐
Check out new user group experience and if you are a leader please create your group
Did you miss the call?? Check out the Power Apps Community Call here!
See the latest Power Apps innovations, updates, and demos from the Microsoft Business Applications Launch Event.
User | Count |
---|---|
257 | |
247 | |
83 | |
36 | |
29 |
User | Count |
---|---|
297 | |
267 | |
117 | |
65 | |
45 |