on 2023 Sep 26 7:49 PM
In an IBP Key Figure calculation, one can easily make conditional statements based on an Planning Object's attribute value. For example, a conditional statement based on
if the attribute ATTR1's value is: "APPROVED" (converted to uppercase)
as follows:
IF(UPPER(''ATTR1'') = ''APPROVED''...
However, how does one code:
if the attribute ATTR1's value is: empty (none)
Can we use any of the usual suspects in this case, such as IF(ISNULL(... or ISBLANK(... et cetera?
Request clarification before answering.
Dear,
You may use:
IF(ISNULL(ATTR1),...,...)
When Editing the Calculation, do not use Single Quotes ('') around the Attribute ID. Upon saving the changes, system will encapsulate the required quotes.
Since, the requirement is to look for NULL value, using a UPPER() is not required.
Best regards,
Avijit
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi, Use
IF(ISNULL(XX),YY,ZZ)
Br,
Lokesh
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
8 | |
4 | |
3 | |
2 | |
1 | |
1 | |
1 | |
1 | |
1 | |
1 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.