Hello,
I have a situation where I have an IF Statement that checks a condition. And that statement works but I also need to include another IF statement that will append to that the first IF statement.
First statement:
Comments: If(JobCode_x003a_PLine.Value="Wireline", "DR, Tier 1", "DR, Tier 1, MSK")
In the second statement I want to check the date and if it's a stat, I want the word, ", Stat" after the first statement result.
If(DataCardValue12_3.SelectedDate in DayCalendar.Event, ", Stat")
I tried to use an AND IF, but ended up with the word false being saved in my comments field.
Thanks for your help!