on 2022 Nov 04 4:48 AM
Hello Folks,
How to replace null values by Zero for stored key figure in IBP?
Request clarification before answering.
Hi Basavaraj,
Very easiest way is to change this keyfigure to Stored and Calculated.
KF@Request = SUM(KF@PL(calculated values)
KF@PL = IF(ISNULL(KF@PL(stored values), 0, KF@PL(stored values))
Best Regards,
Riyaz
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi g_basavaraj
One way to achieve the same is to create a calculated KF with logic to replace NULL with zero otherwise use sames values then using copy operator you can copy this back to original stored KF.
Thanks
Girish
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Change KF as Calculated and Stored keyfigure and write a logic as below.
if (ISNULL(KF),0.KF)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
7 | |
5 | |
5 | |
1 | |
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.