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

Can Excel fill bagel flavors?
You can teach Excel a new custom list. Type the list in cells, File, Options, Advanced, Edit Custom Lists, Import, OK
Try to set up your table like this:

[TABLE="class: grid, width: 500"]
<tbody>[TR]
[TD][/TD]
[TD="align: center"]B
[/TD]
[TD="align: center"]C
[/TD]
[TD="align: center"]D
[/TD]
[/TR]
[TR]
[TD]40[/TD]
[TD]Client Expense
[/TD]
[TD]Client #
[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]41[/TD]
[TD]US $ 500
[/TD]
[TD]Client A[/TD]
[TD]=IF(B41="","",C41&" Expenses: "&B41)
[/TD]
[/TR]
[TR]
[TD]42[/TD]
[TD]US $ 1000[/TD]
[TD]Client B[/TD]
[TD]=IF(B42="","",C42&" Expenses: "&B42)
[/TD]
[/TR]
</tbody>[/TABLE]

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,223,910
Messages
6,175,320
Members
452,635
Latest member
laura12345

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