Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to get data into adjacent columns in Impromptu?? 1

Status
Not open for further replies.

prince18

Technical User
Mar 27, 2006
15
0
0
US
Hi all,
I am working a report where I need to retrieve data based on a condition into adjacent columns varying on the condition.
Suppose if I have numbers in a column in a table, I want to put 1-100 into coln A and 100-200 into coln B in the report.
Is there any possibility I can do that?
How?
Ayone Please help me in this regard!!

Thanks in Advance,
G
 
Add two calculations:

Small: If(column <= 100) then (column) else null
Big: If(column > 100) then (column) else null

and use these in your report



If fishing was easy it would be called catching
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top