+ Reply to Thread
Results 1 to 4 of 4

formula to convert ml to litres automatically to a specific column

  1. #1
    Forum Contributor
    Join Date
    02-11-2014
    Location
    mauritius
    MS-Off Ver
    MS365
    Posts
    1,086

    formula to convert ml to litres automatically to a specific column

    I have a break down sheet from from packs /per packs /litrage which is both ml and litres only..

    The data in column D is only litres from column C which is both ml and litres .

    The ML in column C format is always three digits 200 , 150 ,375.

    the ml is converted to litres by dividing by 1000

    The Litres in column C format is always in format 1 ,10, 10.5 litres.

    looking formula to convert the data from column C to D automatically
    Attached Files Attached Files

  2. #2
    Registered User
    Join Date
    08-21-2017
    Location
    Australia
    MS-Off Ver
    2010 - 2016
    Posts
    15

    Re: formula to convert ml to litres automatically to a specific column

    Are you just asking how to automatically divide a cell by 1000

    For example in

    D2 you could do =C2/1000

  3. #3
    Valued Forum Contributor
    Join Date
    03-16-2017
    Location
    UK
    MS-Off Ver
    2016
    Posts
    371

    Re: formula to convert ml to litres automatically to a specific column

    Just use an IF() function to decide whether it is 3 digits or more

    Formula: copy to clipboard
    Please Login or Register  to view this content.
    Design everything to be as simple as possible, but no simpler.

  4. #4
    Forum Guru
    Join Date
    02-27-2016
    Location
    Vietnam
    MS-Off Ver
    2016
    Posts
    5,913

    Re: formula to convert ml to litres automatically to a specific column

    Try:

    =IF(C2="","",IF(C2<100,C2,C2/1000))

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Replies: 8
    Last Post: 09-29-2016, 08:21 AM
  2. Replies: 3
    Last Post: 01-07-2015, 03:55 AM
  3. Replies: 1
    Last Post: 07-02-2013, 08:26 PM
  4. Replies: 9
    Last Post: 10-13-2010, 04:55 PM
  5. [SOLVED] Excel Formula for "Litres per 100 Km"
    By Expara in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 08-07-2006, 01:25 PM
  6. Excel Formula for "Litres per 100 Km"
    By Expara in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 08-07-2006, 11:45 AM
  7. [SOLVED] Convert litres per 100km to miles per gallon easily
    By Ann Cardus in forum Excel General
    Replies: 4
    Last Post: 08-16-2005, 11:05 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