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

Workdays for a market open Mon, Wed, Friday?
Yes! Use "0101011" for the weekend argument in NETWORKDAYS.INTL or WORKDAY.INTL. The 7 digits start on Monday. 1 means it is a weekend.
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,214,665
Messages
6,120,803
Members
448,990
Latest member
rohitsomani

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