Vba variables in excel functions

sazzy

New Member
Joined
Jul 2, 2008
Messages
5
Hi,

How do you insert a variable (e.g. a cell determined by the user) into a worksheet function. i.e.

Function Coding(Unit, cell)

If Len(cell) = 4 And Unit = "E" Then
Coding = "=LEFT(cell,1)" & unit
End If

End Function

Hope that makes sense :)

Thanks
 

Excel Facts

Copy formula down without changing references
If you have =SUM(F2:F49) in F50; type Alt+' in F51 to copy =SUM(F2:F49) to F51, leaving the formula in edit mode. Change SUM to COUNT.
Welcome to the board..

You almost had it..

remove the quotes around the =Left(...) & Unit

Code:
Function Coding(Unit, cell)

If Len(cell) = 4 And Unit = "E" Then
Coding = LEFT(cell,1) & unit
End If

End Function

Hope this helps.
 
Upvote 0
Thanks jonmo1, that works.

I've got a general question though. If I wanted to use a macro to insert a formula (not just the calculated value) into a cell but one of the arguments in the formula was a variable i.e.

Function Coding(Unit, cell)

If Len(cell) <> 4 And Unit = "E" Then
Coding = "=LEFT(cell,1)"
End If

End Function

How I write the code so that once executed in excel the cell shows =LEFT(A?, 1), where A? is a variable cell selected by the user?!

Make sense?!
 
Upvote 0

Forum statistics

Threads
1,214,834
Messages
6,121,876
Members
449,056
Latest member
ruhulaminappu

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