Results 1 to 4 of 4

Help with getting variable to 2 decimal places

Threaded View

DMacSTB Help with getting variable to... 03-11-2017, 04:49 PM
protonLeah Re: Help with getting... 03-11-2017, 04:53 PM
DMacSTB Re: Help with getting... 03-11-2017, 04:58 PM
protonLeah Re: Help with getting... 03-11-2017, 05:55 PM
  1. #1
    Registered User
    Join Date
    07-10-2012
    Location
    Edinburgh
    MS-Off Ver
    Excel 2003
    Posts
    41

    Help with getting variable to 2 decimal places

    I'm struggling a bit with getting the variable 'price' to 2 decimal places. I've got price set as Dim price As Single but it isn't working with just that. What am I doing wrong? I'd also like to round up the result of Range("D" & x).Value to #.99

    Also, as I'm a total rookie I'm struggling to be efficient with my coding and feel this script is a bit long winded. Is there anyway to reduce it down?

        On Error Resume Next
        For x = 2 To 10
            Brand = Range("T" & x).Value
            With ThisWorkbook.Sheets
                Margin = Application.VLookup(Brand, ws2.Range("A2:B" & Brandcount), 2, False)
                Range("S" & x).Value = 1 - (Margin / 100)
                If Err.Number Then
                   Range("S" & x).Value = 1 - (DefaultMargin / 100)
                End If
                divider = Range("S" & x).Value
                price = (Range("R" & x) / divider * 1.2) / (1 - (Fee / 100))
                Range("D" & x).Value = price
            End With
    
        Err.Clear
        Next x
        
        With ActiveSheet
            .AutoFilterMode = False
            With Range("S1", Range("S" & Rows.Count).End(xlUp))
                .AutoFilter 1, "x"
                On Error Resume Next
                .Offset(1).SpecialCells(12).EntireRow.Delete
            End With
            .AutoFilterMode = False
        End With
    Last edited by DMacSTB; 03-11-2017 at 04:53 PM.

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. [SOLVED] variable type changing number of decimal places
    By russc2541 in forum Excel Programming / VBA / Macros
    Replies: 6
    Last Post: 05-16-2014, 07:43 AM
  2. [SOLVED] Round variable to 4 decimal places
    By achidsey in forum Excel Programming / VBA / Macros
    Replies: 5
    Last Post: 01-13-2014, 02:52 PM
  3. Variable Decimal Places in One Spreadsheet
    By moneal75 in forum Excel Formulas & Functions
    Replies: 4
    Last Post: 11-18-2012, 10:20 PM
  4. [SOLVED] Round Single Variable To 2 Decimal Places
    By nevi in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 05-06-2012, 02:33 PM
  5. Forcing decimal places dependant on variable
    By NathM in forum Excel General
    Replies: 2
    Last Post: 05-04-2011, 05:34 PM
  6. How to change the number of decimal places in a variable cell reference...
    By kenab1 in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 03-08-2010, 01:32 PM
  7. [SOLVED] Entering numbers with variable decimal places.
    By Jack in forum Excel Formulas & Functions
    Replies: 8
    Last Post: 02-02-2005, 01:06 AM

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