Can anyone tell me how to give more than one criteria to the crystal reports RecordSelectionFormula property ? for eg; field a = 1 and field b = "hello"
Or any other way to manipulate data this way?
Thanks in advance
Printable View
Can anyone tell me how to give more than one criteria to the crystal reports RecordSelectionFormula property ? for eg; field a = 1 and field b = "hello"
Or any other way to manipulate data this way?
Thanks in advance
With Me.CrystalReport1
.SelectionFormula = "{Table1.Field1} = 1 AND {Table1.Field2} = 'B'"
.Action=1
End With