+ Reply to Thread
Results 1 to 11 of 11

IF function to buy inventory if it goes below 75...

  1. #1
    Registered User
    Join Date
    02-26-2017
    Location
    PORTUGAL
    MS-Off Ver
    EXEL 2016
    Posts
    6

    IF function to buy inventory if it goes below 75...

    hi friends!!!! hope you guys can help me with this!!! the IF funtion has to buy inventory if it goes -75 the inventory is 100 and the buy order is blank....
    ...........START JA FE MA AP
    p sales......... 31 34 25 30
    p.invtory 100 69 35 10 -20
    p.buy.ordr=IF????????

    I DONT even know if an IF funtion works to this situation i try every way possible im feeling kind of dumb this is for a assingment if i pass the quizz with only this one wrong i will never will know the solution because in the end they dont reveal the solutions i need to know i hate that im not able to solve this...
    i watched hours of youtub videos and im still clueless about this one ....

    regards
    Last edited by rookxl; 02-26-2017 at 06:00 AM.

  2. #2
    Banned User!
    Join Date
    02-05-2015
    Location
    San Escobar
    MS-Off Ver
    any on PC except 365
    Posts
    12,168

    Re: hi i need to make an IF funtion to buy invenctory if it goes below 75...

    try in C2: =IF(B2>=100,"",IF(B2<=-75,"Buy",""))
    Please Login or Register  to view this content.
    but I don't understand what you want to achieve
    maybe in C2: =IF(B2>=100,"",IF(B2<=-75,"Buy",B2)) ?
    Please Login or Register  to view this content.
    Last edited by sandy666; 02-26-2017 at 06:28 AM. Reason: typo

  3. #3
    Registered User
    Join Date
    02-26-2017
    Location
    PORTUGAL
    MS-Off Ver
    EXEL 2016
    Posts
    6

    Re: hi i need to make an IF funtion to buy invenctory if it goes below 75...

    i want to buy inventory to the BUY ORDER on B5 ... wen the INVENTORY on B4... value.. that STARTS with 100 on C4 drops under 75 because of PRODUCT SALES on B3... the sales start on D3 using a IF fuction on C5 and i dont even know if the IF function can aply in this ....

    thank you

    regards

  4. #4
    Banned User!
    Join Date
    02-05-2015
    Location
    San Escobar
    MS-Off Ver
    any on PC except 365
    Posts
    12,168

    Re: hi i need to make an IF funtion to buy invenctory if it goes below 75...

    Attach a sample workbook. (Not a picture!)
    Make sure there is just enough data to demonstrate your need. Include a BEFORE (original) sheet and an AFTER (required output) sheet in the workbook if needed to show the process you're trying to complete or automate.
    Make sure your desired results are shown, mock them up manually if necessary. Remember, it should reflect original structure of your data.
    Remember to desensitize the data.
    Note:
    • Please do not attach password protected workbooks/worksheets
    • Please do not attach file(s) from exterior servers
    • Please do not attach file(s) with enabled any Workbook Open/Autorun macros!

    20 rows of data is enough (probably)

    Click on GO ADVANCED and then scroll down to Manage Attachments to open the upload window.
    If link is not from FORUM server you have to wait until someone will want to watch the file from an external server.

  5. #5
    Registered User
    Join Date
    02-26-2017
    Location
    PORTUGAL
    MS-Off Ver
    EXEL 2016
    Posts
    6

    Re: hi i need to make an IF funtion to buy invenctory if it goes below 75...

    THANK YOU ALL VERY MUCH im very happy i CRACKED THE CASE !!!!!!!!!! it turns out its actualy VERY simple im not going to post the outcome cause maybe someone is outthere taking the same course and its lame to go and post it.... i was searching for easy way to crack this i must admit!!!!!!!! but i was not realy geting it!!! i only got it wen i read in portuguese writing.... what it is and how a IF function works !!! im portuguese my exel is in portuguese and im taking a course in english and the teacher uses exel english version of course and its has diferences in writing functions commas dont aply on my exel etc theres a lot this difrent for a beginer its messed up im watching videos of brazilians dudes on you tube know to get it rigth on track

  6. #6
    Registered User
    Join Date
    02-26-2017
    Location
    PORTUGAL
    MS-Off Ver
    EXEL 2016
    Posts
    6

    Re: hi i need to make an IF funtion to buy invenctory if it goes below 75...

    im not dumb just a litle retard ahahah it toke me maybe 2 or 3 days to do this function right!!!!

  7. #7
    Banned User!
    Join Date
    02-05-2015
    Location
    San Escobar
    MS-Off Ver
    any on PC except 365
    Posts
    12,168

    Re: hi i need to make an IF funtion to buy invenctory if it goes below 75...

    If you attach your excel example in portuguese it (function or formulas) will be automatically "translated" to the language of receiver (and vice versa)

    see attachment
    Attached Files Attached Files
    Last edited by sandy666; 02-26-2017 at 10:21 AM.

  8. #8
    Registered User
    Join Date
    02-26-2017
    Location
    PORTUGAL
    MS-Off Ver
    EXEL 2016
    Posts
    6

    Re: hi i need to make an IF funtion to buy invenctory if it goes below 75...

    well i was thinking i had the correct if statement but its not the case i could any one look at it and say somthing about it?
    regards

  9. #9
    Registered User
    Join Date
    02-26-2017
    Location
    PORTUGAL
    MS-Off Ver
    EXEL 2016
    Posts
    6

    Re: hi i need to make an IF funtion to buy invenctory if it goes below 75...

    Consider the following spreadsheet showing sales of Product A, current inventory of Product A and purchases of Product A from a supplier when inventories run low.

    Using appropriate syntax for entering a formula in a spreadsheet cell, write a statement in cell D5 that would trigger a 100 unit order from a supplier when the inventory falls below 75 units for the period to G
    Attached Files Attached Files
    Last edited by rookxl; 02-27-2017 at 05:41 AM.

  10. #10
    Banned User!
    Join Date
    02-05-2015
    Location
    San Escobar
    MS-Off Ver
    any on PC except 365
    Posts
    12,168

    Re: IF function to buy inventory if it goes below 75...

    In C5: =IF(C4<75,"Buy "&100,C4) if you want to see how much inventory >=75 you have and "buy 100" if inventory is less than 75
    or
    in C5: =IF(C4<75,"Buy "&100,"") if you want to see only info: "buy 100" if inventory <75
    or
    in C5: =IF(C4<75,"Buy "&100,C4<0) if you want to see "buy 100" if inventory <75 and FALSE if you don't need to buy anything

    on the end check:
    =IF(C4<75,"Buy "&100-C4,C4)
    or
    =IF(C4<75,"Buy "&100-C4,"")
    Attached Files Attached Files
    Last edited by sandy666; 02-27-2017 at 07:26 AM.

  11. #11
    Banned User!
    Join Date
    02-05-2015
    Location
    San Escobar
    MS-Off Ver
    any on PC except 365
    Posts
    12,168

    Re: IF function to buy inventory if it goes below 75...

    If the basic problem is solved
    - it's always a good practice to show respect to the person(s) who have helped you
    - is a click on the Add Reputation first (left lower corner of the post of person(s) who helped you) and then
    - mark the thread as SOLVED (top right corner over your first post - Thread Tools). This is important for all of us,

    Thanks

+ 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. [SOLVED] Help with IF functions, for inventory, or maybe different function completely
    By s99f150 in forum Excel Formulas & Functions
    Replies: 7
    Last Post: 04-13-2016, 08:27 PM
  2. Calculating an inventory using Vlookup or some other function?
    By bigrut2008 in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 04-16-2015, 10:11 AM
  3. Inventory Function Help
    By Ariwalker in forum Excel Formulas & Functions
    Replies: 1
    Last Post: 09-12-2014, 04:32 AM
  4. [SOLVED] Need function to input daily inventory from different sheet
    By tonny_hartono in forum Excel Formulas & Functions
    Replies: 6
    Last Post: 03-02-2013, 04:09 PM
  5. [SOLVED] Need remaining average inventory price after partial inventory is sold
    By Akano in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 12-04-2012, 04:12 AM
  6. Inventory Stock Balancing with Inventory Data
    By bingbangboom in forum Excel General
    Replies: 2
    Last Post: 01-30-2011, 11:06 PM
  7. Replies: 2
    Last Post: 06-17-2005, 05:05 PM

Tags for this Thread

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