VBA: How do I change this cell reference into a Formula?

Peter h

Active Member
Joined
Dec 8, 2015
Messages
417
I'm trying to change the highlighted Cell reference into a formula, so that it is dynamic and changes as the data changes, and not just when the macro is run. Does that make sense? So the macro will write the formula (...Cell = "=...")
Code:
lCol = ws.Cells(1, Columns.Count).End(xlToLeft).Column

i = Me.lb_Players.ListIndex + 1
j = Me.lb_Rounds.ListIndex + 1
k = Me.lb_Opp.ListIndex + 1

ws.Cells(i + 1, (lCol + j) + Me.lb_Rounds.ListCount) =[COLOR=#FF0000] ws.Cells(k + 1, lCol - 1).Value[/COLOR]
 

Excel Facts

Save Often
If you start asking yourself if now is a good time to save your Excel workbook, the answer is Yes
To write the cell reference:
Code:
ws.Cells(i + 1, (lCol + j) + Me.lb_Rounds.ListCount).Formula = ws.Cells(k + 1, lCol - 1).Address
 
Upvote 0
Try
Code:
[COLOR=#333333]ws.Cells(i + 1, (lCol + j) + Me.lb_Rounds.ListCount).[U]formula[/U] = "=" & [/COLOR][COLOR=#FF0000] ws.Cells(k + 1, lCol - 1).[U]address[/U][/COLOR]
 
Last edited:
Upvote 0
Thank you both for the response. I don't know why I didn't think of that. I think I was overthinking it. lol.
 
Upvote 0

Forum statistics

Threads
1,224,823
Messages
6,181,181
Members
453,022
Latest member
Mohamed Magdi Tawfiq Emam

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