S
Stuart
Importing certain files into Excel cause some rows where
principally text is in column B to contain empty lines.
I cannot identify these cells programmatically, so I
currently let the user run a basic import routine, then display:
MsgBox ("The EBQ file(s) are now imported and formatted into Excel." &
vbNewLine & _
"There will be occasions where cells in column B have an extra
empty line." _
& vbNewLine & "Currently, these empty lines must be marked by
you manually." _
& vbNewLine & vbNewLine & _
"Open the new files (every file in that new folder) and place #
in col G" _
& vbNewLine & "in every row that has such an empty line." &
vbNewLine & _
"Do this for every sheet in every workbook." & vbNewLine &
vbNewLine & _
"Save each workbook, then run the 'HASH' sub on those
workbooks." & _
vbNewLine & vbNewLine & _
"Once you have done this, you can run the 'PageResize'
routines.")
I'm now relying on them to accurately find every instance of the blank line
throughout every sheet and book they just imported.
The delete routine is simple, since it's always just one blank line. So find
'#',
establish the rowheight, and then reduce by 12.75 (the default).
Is there anything else I could try, please?
Regards.
principally text is in column B to contain empty lines.
I cannot identify these cells programmatically, so I
currently let the user run a basic import routine, then display:
MsgBox ("The EBQ file(s) are now imported and formatted into Excel." &
vbNewLine & _
"There will be occasions where cells in column B have an extra
empty line." _
& vbNewLine & "Currently, these empty lines must be marked by
you manually." _
& vbNewLine & vbNewLine & _
"Open the new files (every file in that new folder) and place #
in col G" _
& vbNewLine & "in every row that has such an empty line." &
vbNewLine & _
"Do this for every sheet in every workbook." & vbNewLine &
vbNewLine & _
"Save each workbook, then run the 'HASH' sub on those
workbooks." & _
vbNewLine & vbNewLine & _
"Once you have done this, you can run the 'PageResize'
routines.")
I'm now relying on them to accurately find every instance of the blank line
throughout every sheet and book they just imported.
The delete routine is simple, since it's always just one blank line. So find
'#',
establish the rowheight, and then reduce by 12.75 (the default).
Is there anything else I could try, please?
Regards.