У меня есть таблица, в которой должна быть ссылка на электронную почту из заявления IF Else. Я могу заставить электронную почту работать нормально, но когда у меня есть оператор IF Else, я получаю неверное измерение. Есть идеи, что я делаю не так?
=IF(45-(networkdays(max({<[Access Type]={'User Access', 'Login Access'}>} Date),Today())) = 15,
'mailto:'&EMAIL_ADDRESS&'?subject=Your QLIKSENSE Account has become DISABLED'&'&body= This is a NOTICE informing you that your Qlik Sense account has been disabled due to inactivity.
You will have 15 days to log into your account before the account is deleted.
All inactive accounts will be DELETED after 45 days of inactivity.
To access the Qlik Sense site, navigate to https://website and click Get Started.
')
,
IF(45-(networkdays(max({<[Access Type]={'User Access', 'Login Access'}>} Date),Today())) <= 5,
'mailto:'&EMAIL_ADDRESS&'?subject=Your QLIKSENSE Account has been deleted'&'&body= This is a NOTICE informing you that your Qlik Sense account has been deleted due to inactivity.
All inactive accounts will be DELETED after 45 days of inactivity.
To access the Qlik Sense site, navigate to https://website and click Get Started.
))