Hi, I have two parameters, ParmA and ParmB. I can pick only one of the items from ParmA. ParmB is only for user to enter a code. But what I want to do is based on one of the values of ParmA, I want place the word NONE in the ParmB.
I have created a generic ParmC and it is located between both ParmA and ParmB. On the Available Values and Default values I have place the exact same code like
IIF(Split(Parameters!ParmA.value.Tostring(),”$$”)(1) = 0, “NONE”, nothing)
It works very well for me but I need to hide ParmC and as soon as I hide it or set it to Internal my ParmB is always gray.
Would appreciate any help or thought on this.
Thanks