View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Ardus Petus Ardus Petus is offline
external usenet poster
 
Posts: 718
Default Referencing a Cell in VBA

If Range("Grade").Value = "A25" Then


HTH
--
AP

"Aaron1978" a écrit
dans le message de news:
...

Hi All,

Below is a few lines of VBA from my spread sheet:

Function fnSMYS(strSteelGrade)
If Cells(4, 3).Value = "A25" Then
fnSMYS = 172.4
ElseIf (Cells(4, 3).Value = "A") Then
fnSMYS = 206.9
....etc

As you can see it is a function and it is checking the value of cell
4,3 (or 4C) and then it assigns fnSMYS a value depending on what is in
4,3. In my spread sheet I have called cell 4,3 "Grade". How can I
replace the line Cells "(4,3).Value" in VBA with a reference to the
name "Grade"?

Best Regards,

Aaron


--
Aaron1978
------------------------------------------------------------------------
Aaron1978's Profile:
http://www.excelforum.com/member.php...o&userid=31201
View this thread: http://www.excelforum.com/showthread...hreadid=546243