Help with this IF statement

murraythek

Board Regular
Joined
Aug 31, 2015
Messages
61
Its currently set up as follows: =IF(B41="","","Client A Expenses: "&B41) but I want to add another cell in this case B42 to that formula to capture Client B's expenses.

How do I tie that in correctly?
 

Excel Facts

Excel Joke
Why can't spreadsheets drive cars? They crash too often!
Try to set up your table like this:

B
C
D
40Client Expense
Client #
41US $ 500
Client A=IF(B41="","",C41&" Expenses: "&B41)
42US $ 1000Client B=IF(B42="","",C42&" Expenses: "&B42)

<tbody>
</tbody>

Just Drag the formula down to your range.
In case you wish to combine both the expenses in one cell, try this one: =IF(B41="","",C41&" Expenses: "&B41)&". "&IF(B42="","",C42&" Expenses: "&B42)
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,971
Messages
6,122,525
Members
449,088
Latest member
RandomExceller01

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top