on 2016 May 25 12:39 PM
I have customer table that has a column for the customer_name.
It can be blank. If it's blank, I can get the name from 2 columns as well, called firstname and lastname.
How can I combine these two to display with blank?
So that my formula would look like:
If Customer_Name > ' ' then Customer_Name else
Firstname + ' ' Lastname
Hi Paul,
Create a formula with this code:
If Trim(Customer_Name) = '' then
Firstname + ' ' + Lastname
else
Customer_Name
While in the formula editor, select 'Default Values for Nulls' from the drop-down on the top.
-Abhilash
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
70 | |
10 | |
10 | |
7 | |
6 | |
6 | |
6 | |
5 | |
5 | |
5 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.