+ Reply to Thread
Results 1 to 4 of 4

Errors on If Statements

Hybrid View

  1. #1
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2010, 2019
    Posts
    40,689
    You're missing an "End With", but the With statements don't contribute anything here, Chemist.

    Maybe just
    Private Sub Worksheet_Change(ByVal Target As Range)
        If Target.Address(0, 0) = "A5" Then
            Select Case Target.Value
                Case "$/square foot"
                    Range("E2").NumberFormat = "$#,##0.00"
                Case "%/construction cost"
                    Range("E2").NumberFormat = "0.0%"
            End Select
        End If
    End Sub
    Last edited by shg; 08-04-2008 at 01:30 PM.

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1