Hello community.
I hope somebody could point me in the right direction with this formula.
I have a column "Requisition Done" a Y/N column
If the user check an icon.manufacture appears.
If Requisition Done eq "No" no icon to display
if requisition Done eq "Yes" and we passed already the delivery dat change the icon.manufacture for icon,check.
thanks in advance for any help.
Regards
Solved! Go to Solution.
That could be solved by checking also for empty date field. Either with another If statement or with OR operator ||. For example:
If(Today()<='THAT DATE FIELD') || IsBlank('THAT DATE FIELD'),Icon.Manufacture,Icon.Check)
Hey, you could use 2 if statements:
- first to be used in icon visibility, or if you convert the field to bool value then you can pass the value straight there.
- Then for the icon property you would need to compare Delivery date with Today(), here's example
If(Today()<='THAT DATE FIELD'),Icon.Manufacture,Icon.Check)
Best regards,
Matt
Hey @Mattheus thank you very much for your prompt response. Almost done.
It is working partially. Because fir some records I don't have a value in that date field means it's empty and the formula is retrieving a check mark icon and should be a manufacture icon
That could be solved by checking also for empty date field. Either with another If statement or with OR operator ||. For example:
If(Today()<='THAT DATE FIELD') || IsBlank('THAT DATE FIELD'),Icon.Manufacture,Icon.Check)
Thank you thank you thank you
🙂
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 |
---|---|
185 | |
53 | |
41 | |
36 | |
30 |
User | Count |
---|---|
241 | |
74 | |
71 | |
69 | |
65 |