Hello Everyone
Here's the case:
I am calling excise amount for all the items in an "Article Statement" report.
Now i want that items of some specific group(EXPORT) should show a string'UN BONDED' in place of the excise amount.
How can i acheive this.
what are the variable need to be declared.
0
Comments
http://ssdynamics.co.in
Create a text variable mytext
Change the sourseexp of the texbox to mytext.
Onpresection add this code
If. "specific group" = 'EXPORT'. Then
Mytext := 'UN BONDED'
Else
Mytext := format("excise amount");
Independent Consultant/Developer
blog: https://dynamicsuser.net/nav/b/ara3n
Thanx 4 ur reply.
It worked