Hi,
I am trying to display datas from ColumnTimeIn(I) ColumnTimeOut(O) of "ColumnTime" using
conditions from another column "ColumnStatus" related to "ColumnTime".
I have:
ColumnTime ColumnStatus
---------- ------------
1 am I
1 pm O
2 am I
2 pm O
3 am I
3 pm O
I want to have:
ColumnTimeIn(I) ColumnTimeOut(O)
----------- -----------
1 am 1 pm
2 am 2 pm
3 am 3 pm
But I get
ColumnTimeIn(I) ColumnTimeOut(O)
----------- -----------
1 am <blank>
<blank> 1 pm
2 am <blank>
<blank> 2 pm
3 am <blank>
<blank> 3 pm
<blank> are the empty cells that I see when I use "if" in ColumnStatus to find
ColumnTimeIn(I) and ColumnTimeOut(O).
How can I get rid of these empty cells and get the format of output I desire?
This is what I try to do but fail to get rid of empty cells:
<formula>
if {Table.ColumnStatus} = "I" then
{@ColumnTime}
Please help,
thanks.
Tanzina
I am trying to display datas from ColumnTimeIn(I) ColumnTimeOut(O) of "ColumnTime" using
conditions from another column "ColumnStatus" related to "ColumnTime".
I have:
ColumnTime ColumnStatus
---------- ------------
1 am I
1 pm O
2 am I
2 pm O
3 am I
3 pm O
I want to have:
ColumnTimeIn(I) ColumnTimeOut(O)
----------- -----------
1 am 1 pm
2 am 2 pm
3 am 3 pm
But I get
ColumnTimeIn(I) ColumnTimeOut(O)
----------- -----------
1 am <blank>
<blank> 1 pm
2 am <blank>
<blank> 2 pm
3 am <blank>
<blank> 3 pm
<blank> are the empty cells that I see when I use "if" in ColumnStatus to find
ColumnTimeIn(I) and ColumnTimeOut(O).
How can I get rid of these empty cells and get the format of output I desire?
This is what I try to do but fail to get rid of empty cells:
<formula>
if {Table.ColumnStatus} = "I" then
{@ColumnTime}
Please help,
thanks.
Tanzina