Discussions
Categories
- 17.9K All Categories
- 3.4K Industry Applications
- 3.3K Intelligent Advisor
- 62 Insurance
- 536.1K On-Premises Infrastructure
- 138.2K Analytics Software
- 38.6K Application Development Software
- 5.7K Cloud Platform
- 109.4K Database Software
- 17.5K Enterprise Manager
- 8.8K Hardware
- 71.1K Infrastructure Software
- 105.2K Integration
- 41.6K Security Software
PBCS: Data in form

I explain the steps that I have followed:
I have defined the "ESCALA" list.
I have created a "RESULTADO" member in "Partidas" dimension with this formula:
[OpenInputValueBlock]
IF ("R20">200)
"RESULTADO"=[Escala.A];
ELSEIF (("R20">50) OR ("R20"<200))
"RESULTADO"=[Escala.B];
ELSEIF ("R20"<50)
"RESULTADO"=[Escala.C];
[CloseInputValueBlock]
I have created a form with the "RESULTADO" row. I viewed the data and all cells with the value "DEFICIENTE"
I access to "ESCALA" list to complete the information that I mark in yelow:
** I add this infomation because I want that if the values are blank, the system displays the text "--". Is correct this funcionality that I want for this option?
I have created a "RESULTADO B" member in "Partidas" dimension with this formula:
[OpenInputValueBlock]
IF ("R20"==200)
"RESULTADO B"=[Escala.C];
ELSEIF ("R20"==50)
"RESULTADO B"=[Escala.B];
ENDIF
[CloseInputValueBlock]
I add the "RESULTADO B" row at form.
I refreshed the data base
Why the RESULTADO row doesn't refresh with --?
Are there other setup for "RESULTADO" or "RESULTADO B" row, if I want that the system displays the cells in blank or with value "--" when the values in other rows are blank?
Best Answer
-
Here is an example
Smart List
Missing drop down label set to "--"
Missing form label set to "Drop Down Setting"
Member with Smart List assign and formula =
Form
Cheers
John
Answers
-
Here is an example
Smart List
Missing drop down label set to "--"
Missing form label set to "Drop Down Setting"
Member with Smart List assign and formula =
Form
Cheers
John
-
Thanks, I added the value #Missing at formula and, the form has the information like I want.