Writing Excel Formula To A Cell

  • Thread starter Thread starter Nathan
  • Start date Start date
N

Nathan

I am trying to write a formula that translates text into a
barcode to a cell ..

Here is what I am doing:
-------------------------------------------------
ActiveCell.Value = "=WaspBarCode('" & Trim(arrResults(2,
x)) & " ', 12, 20, 0, 1, FALSE, '" & Trim(arrResults(2,
x)) & "')"
-------------------------------------------------

And I get this error:
-------------------------------------------------
Runtime Error '1004':

Application-Defined or object-defined error.
-------------------------------------------------

If I take the "=" out in "=WaspBarCode ." it prints to the
cell but the formula does something all screwy .. Like
turns each of the inputs to the formula (12, 29, 0, 1)
into its own barcode.

Anyone know how I can write a formula to an cell?
 
I'm not positive, but I think if you take out "ActiveCell.Value" and replace it with "ActiveCell.Formula" that should write the formula to the cell. Hope this helps.
Matt
 
Works.
Thanks Man.

-----Original Message-----
I'm not positive, but I think if you take
out "ActiveCell.Value" and replace it
with "ActiveCell.Formula" that should write the formula to
the cell. Hope this helps.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top