ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Macro VBA, Drop down IF statement (https://www.excelbanter.com/excel-programming/344544-macro-vba-drop-down-if-statement.html)

Matt_2K

Macro VBA, Drop down IF statement
 

Code:
--------------------

Sub DropDown1_Change()
'
' DropDown1_Change Macro
' Macro recorded 02/11/2005 by 96bst01
If C4 = "1" Then
Range("E4").Select
Selection.NumberFormat = "0%"
ElseIf C4 = "2" Then
Range("E4").Select
Selection.NumberFormat = "£#,##0.00"
End If

End Sub

--------------------


I've got a spreadsheet, it has an ID, either 1 or 2, in cell C4. This
is changes when I change my dropdown (These are linked up to another
table, with ID 1 and 2).

I'm trying to say, if the value in C4 is 1, format E4 to a percentage.
Else if the value in C4 is 2, I want it to format as currency.

As I am a programmer myself, mainly PHP, nothing like this, I
understand the structure and know how to debug things. I think the
problem is coming from it not understanding what C4 is. Do I need to
define it?

Thanks.


--
Matt_2K
------------------------------------------------------------------------
Matt_2K's Profile: http://www.excelforum.com/member.php...fo&userid=6176
View this thread: http://www.excelforum.com/showthread...hreadid=481021



All times are GMT +1. The time now is 07:18 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com