VBA To Return Mixed Formula of Literals and Cell Addresses

wsnyder

Board Regular
Joined
Sep 23, 2018
Messages
223
Office Version
  1. 365
Platform
  1. Windows
Hi all,

Using Excel 365.

How can I get VBA to return a Formula that is a combination of Literals and Cell Refrences so that the formula will update based on the values of the cell references?
I tried a few variations of

Frmla = "=" & SupplierName _
& ""ColNbr_X"" & ""RowNbrDataBegin"" _
& SupplierNbr _
& ""ColNbr_Y"" & ""RowNbrDataBegin""
But I am getting the items in quotes as literals instead of a cell reference such as D6

Thanks
-w
 

Excel Facts

VLOOKUP to Left?
Use =VLOOKUP(A2,CHOOSE({1,2},$Z$1:$Z$99,$Y$1:$Y$99),2,False) to lookup Y values to left of Z values.
If you are trying to concatenate all of the values from those cells, try this:
VBA Code:
Sub Hey()
  Dim Frmla As String
  Dim Q As String
  
  Q = Chr(34) & "," & Chr(34)
  
  'No spaces or delineation
  Frmla = "=SupplierName&ColNbr_X&RowNbrDataBegin&SupplierNbr&ColNbr_Y&RowNbrDataBegin"
  
  'Comma delineation
  Frmla = "=SupplierName&" & Q & "&ColNbr_X&" & Q & "&RowNbrDataBegin&" & Q & "&SupplierNbr&ColNbr_Y&" & Q & "&RowNbrDataBegin"
  ActiveCell.Value = Frmla
  
  
End Sub
 
Upvote 0
Solution
Thanks Jeffrey,

I ended up switching all 4 components to cell addresses.
This is my final formula with your good help.

VBA Code:
frmla = "=" & Vendor_Name_Address _
                    & "&" & Order_Number_Address _
                    & "&" & PO_Nbr_Address _
                    & "&" & Acct_Nbr_Address

Thanks,
-w
 
Upvote 0

Forum statistics

Threads
1,214,561
Messages
6,120,231
Members
448,951
Latest member
jennlynn

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