Sep 12 2023 01:35 AM
Hello,
I have a Sharepoint list with a column "IBAN" and another column "Partner". Now I would like to ensure that if there is something in the "IBAN" column, "YES" is automatically entered in the "Partner" column. If the entry in the IBAN line is empty, then "NO" should be entered.
Any Idea?
Sep 12 2023 01:53 AM
@cAhler Create a calculated column called Partner and add the following formula: =IF(IBAN="","NO","YES")
Rob
Los Gallardos
Microsoft Power Automate Community Super User.
Principal Consultant, SharePoint and Power Platform WSP UK (and classic 1967 Morris Traveller driver)
Sep 12 2023 02:51 AM
Sep 12 2023 03:01 AM
Rob
Los Gallardos
Microsoft Power Automate Community Super User.
Principal Consultant, SharePoint and Power Platform WSP UK (and classic 1967 Morris Traveller driver)
Sep 12 2023 03:46 AM
Sep 12 2023 06:14 AM
It's crazy, in office 365, SharePoint List i have to use this:
=WENN(IBAN="";"No";"Yes")
Maybe a language problem.