Forum Discussion
torsten_FO
Helper I
5 years agoCheck value of 0 in Power Editor
Hi, i use this Query in M for Date-modifying: let
MyDay = Date.Day(DateTime.LocalNow()) - 10
in
MyDay My question here is how can i validate that the value in MyDay is not...
- 5 years ago
Hi torsten_FO
let aux_ = Date.Day(DateTime.LocalNow()) -10 MyDay = if aux_ <= 0 then 1 else aux_ in MyDayor if you want it in just one line:
let MyDay = if (Date.Day(DateTime.LocalNow()) -10) <= 0 then 1 else Date.Day(DateTime.LocalNow())-10 in MyDayPlease mark the question solved when done and consider giving a thumbs up if posts are helpful.
Contact me privately for support with any larger-scale BI needs, tutoring, etc.
Cheers
AlB
Community Champion
5 years agoHi torsten_FO
let
aux_ = Date.Day(DateTime.LocalNow()) -10
MyDay = if aux_ <= 0 then 1 else aux_
in
MyDay
or if you want it in just one line:
let
MyDay = if (Date.Day(DateTime.LocalNow()) -10) <= 0 then 1 else Date.Day(DateTime.LocalNow())-10
in
MyDay
Please mark the question solved when done and consider giving a thumbs up if posts are helpful.
Contact me privately for support with any larger-scale BI needs, tutoring, etc.
Cheers