Ignore Blank Cells When Creating A Formula

promoe

New Member
Joined
May 24, 2010
Messages
2
Below is a journal voucher. I would like to extract the data to post in our DMS. I run into a problem when there are blank cells. I want to be able to go from left (debit entry) to right (credit entry). I initially wrote this two part formula:

The debit formula:
The first cell has to be by itself. So, in cell A50 I posted =A3
In B50 I posted =$A$49&""&B3*100&""&$A$49&""&C3&""&$A$49&""&D3
$A$49 is \r which acts as the enter button in the DMS.

The credit formula:
A51=F3
B51=$A$49&""&H3*-100&""&$A$49&""&I3&""&$A$49&""&E3

This works fine until I reach I5 (blank cell). I want to be able to keep the entries together versus posting the data from A3:D39 & then E3:I39


<tbody>
</tbody>
jvtemplate.png



Any help is greatly appreciated.

Thank you
 

Excel Facts

Select a hidden cell
Somehide hide payroll data in column G? Press F5. Type G1. Enter. Look in formula bar while you arrow down through G.
You could try something like this:

=IF($A$49="","--",$A$49)&" "&IF(B3="","--",B3*100)&" "&IF($A$49="","--",$A$49)&IF(C3="","--",C3)&" "&IF($A$49="","--",$A$49)&IF(D3="","--",D3)

Adjust as needed...
 
Upvote 0

Forum statistics

Threads
1,215,421
Messages
6,124,806
Members
449,191
Latest member
rscraig11

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