
Announcements
I have a label that is the created date of an item. I have the below:
I would like it to chnage red if older than 30 days. Where do i add the -30 i guess thats how it will work.
Hi @jamescosten ,
You mean you want to check if whatever date is in Label25_1 is equal to or greater than 30 days from Today's date?
If yes, you could try something like:
If(
DateValue(Label25_1.Text) >= DateAdd(
Today(),
30
),
Color.Red,
Color.Transparent
)
------------------------------------------------------------------------------------------------------------------------------
If I have answered your question, please mark your post as Solved. Remember, you can accept more than one post as a solution
If you like my response, please give it a Thumbs Up.