How to get current year from predefined function or from textfield containing date . Also how to compare the date with current year? Please suggest some help.
Solved! Go to Solution.
Hello ,
I managed to compare two dates and show and hide a field if the time differenence is more than a year like this :
If(
DateAdd(
TargetItem.LastReview,
365,
Days
) < Now(),
UpdateContext({UpdateBTNgroup: true}),
UpdateContext({UpdateBTNgroup: false})
);
Hi,
you may find what you need here :
https://powerapps.microsoft.com/en-us/tutorials/function-date-time/
https://powerapps.microsoft.com/en-us/tutorials/show-text-dates-times/
the function DateDiff can be used to compare 2 dates
Hi, in addtition to what MatthieuMegaly suggested you can use the string functions Left, Mid, Right.
Example here https://powerusers.microsoft.com/t5/PowerApps-Forum/Using-numbers-and-dates-from-SharePoint-lists/m-...
Hello,
To get current date, you can you Now function
To compare date:
- I think you should convert the date text type from textfield (I assume) to date type by using Date function
- Then, use DateDiff function to compare 2 dates.
You can go here (Formular Reference) for more information.
You can use for example:
Text( yourDateVariable, "mm/dd/yyyy" ) = Text( Today(), "mm/dd/yyyy" )
Hello ,
I managed to compare two dates and show and hide a field if the time differenence is more than a year like this :
If(
DateAdd(
TargetItem.LastReview,
365,
Days
) < Now(),
UpdateContext({UpdateBTNgroup: true}),
UpdateContext({UpdateBTNgroup: false})
);
The first Microsoft-sponsored Power Platform Conference is coming in September. 100+ speakers, 150+ sessions, and what's new and next for Power Platform.
This training provides practical hands-on experience in creating Power Apps solutions in a full-day of instructor-led App creation workshop.
User | Count |
---|---|
184 | |
51 | |
47 | |
32 | |
32 |
User | Count |
---|---|
265 | |
91 | |
78 | |
68 | |
67 |