Hi
IN Row Visibility i am writing this but not working
If(Fields!opvalue.value) = 0 and (fields!recvalue.value) = 0.
Endif
*This post is locked for comments
Hi
IN Row Visibility i am writing this but not working
If(Fields!opvalue.value) = 0 and (fields!recvalue.value) = 0.
Endif
*This post is locked for comments
Hi,
I think you want to write this expression on RDLC Right?
Then write like as below
IIF(((Fields!opvalue.value= 0) and (fields!recvalue.value = 0)),False,True) You can change false/true places based on your requirement. I written for if opvalue is 0 and recvalue is 0 then visible is false.
Thank You
Ramesh
--
I assume you are trying to do it on RDLC report? If yes, then you do not need to write if/endif statements. If you click on "function symbol" you will get already something like SET EXPRESSION FOR: HIDDEN where you can just put:
Fields!opvalue.value = 0 and fields!recvalue.value = 0
Is it in Reports?
Stay up to date on forum activity by subscribing. You can also customize your in-app and email Notification settings across all subscriptions.
André Arnaud de Cal... 291,280 Super User 2024 Season 2
Martin Dráb 230,235 Most Valuable Professional
nmaenpaa 101,156