Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

If Statement

Hi

Can anyone help I'm very new to this and  I want to create an expression for a column in a table that says gives me this field

Pipeline_bill_item.Bill_descript_item

but if there isn't a value for that field then give me this field

Pipeline_bill.Bill_descript

instead. So within the one column in the table if either field has a value it should be shown.

I think this is an IF statement.

Thanks

1 Solution

Accepted Solutions
m_woolf
Master II
Master II

=IF(isnull(Pipeline_bill_item.Bill_descript_item),Pipeline_bill.Bill_descript,Pipeline_bill_item.Bill_descript_item)

View solution in original post

4 Replies
jagannalla
Partner - Specialist III
Partner - Specialist III

If i understood the concept. You need to load the entire dataset first. After that you need to check the whether the field is null or not. If the field is null then drop that field otherwise drop another field.

For eg:

A,B,C are the fileds

If A is null drop the field A otherwise C.

- If you provide sample application we can work on it.

Not applicable
Author

Hi Jagan

I'm working on a designer license through my work with the script already set and data loaded I'm just adding in fields to tables and designing a webview for other users so I can't provide an application sample.

I can get the field names I mentioned in seperate columns but as the values only appear in one column or the other I wanted them combined into one column in the table using an expression. Is this possible?

Thanks

m_woolf
Master II
Master II

=IF(isnull(Pipeline_bill_item.Bill_descript_item),Pipeline_bill.Bill_descript,Pipeline_bill_item.Bill_descript_item)

Not applicable
Author

Hi

Thanks spot on.