c# - Got error in Crystal Report formula -


presently have formula field sum of particular field.now want perform condition on that.i want sum of amountpending column when seatno column not blank.

if {datatable1.seatno != ""}  sum ({datatable1.amountpending}) else 

if not(isnull({datatable1.seatno}))   sum ({datatable1.amountpending}) else   0 

Comments

Popular posts from this blog

html - How to style widget with post count different than without post count -

How to remove text and logo OR add Overflow on Android ActionBar using AppCompat on API 8? -

javascript - storing input from prompt in array and displaying the array -