+ Reply to Thread
Results 1 to 19 of 19

Sliding scale prices #VALUE! error

  1. #1
    Registered User
    Join Date
    10-20-2017
    Location
    London
    MS-Off Ver
    2013
    Posts
    35

    Sliding scale prices #VALUE! error

    Hi, I was helped by several experts on this forum a couple of weeks ago to produce a sliding scale pricing spreadsheet.
    Unfortunately I was so focused on asking about the sliding scale aspect of the spreadsheet, I omitted to mention that it needed a column for the quantities of each panel, which is essential... stupid I know! I've had a go at adding the column myself, but whilst it works, when any cell in the column that gives the final price (column G) is empty, it's returning the error... #VALUE!
    Also I need the row that's currently totaling column E (and which moves down as dimension rows are added), to now total column G instead. And ideally the word TOTAL to appear before it in column F.
    I've attached the spreadsheet as it is now, and if anyone can help with this I'd be very grateful. Thank you.
    Regards,
    Julian.
    Attached Files Attached Files

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

    Re: Sliding scale prices #VALUE! error

    maybe use IFERROR(your_formula,"") or IFERROR(your_formula,0)

  3. #3
    Registered User
    Join Date
    10-20-2017
    Location
    London
    MS-Off Ver
    2013
    Posts
    35

    Re: Sliding scale prices #VALUE! error

    Hi Sandy666, thank you very much, that worked great! As you probably realise I'm a complete novice with Excel.
    I don't suppose you or any one else, would be able to help me with the other thing I mentioned that I needs changing, which is...
    "Also I need the row that's currently totaling column E (and which moves down as dimension rows are added), to now total column G instead. And ideally the word TOTAL to appear before it in column F"
    I hope that makes sense?
    Julian.

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

    Re: Sliding scale prices #VALUE! error

    Use Excel Table. (select A2:G11 in your example) and use Ctrl+T, then right click on this table, find Table and select Totals Row, then slect from the bottom totals row this function what you wish to see

    you'll need change your formulas
    D3: =IF(A3*B3*C3/1000000=0,"",A3*B3*C3/1000000)
    E3: =IFERROR(IF($C3=1,VLOOKUP($D3,$I$2:$J$40,2,1),VLOOKUP($D3,$H$2:$J$40,3,1)),"")

    check it by yourself

    edit:
    and if you want to add row, click on the last bottom right cell of the table and use TAB key
    Last edited by sandy666; 11-08-2017 at 11:01 AM.

  5. #5
    Registered User
    Join Date
    10-20-2017
    Location
    London
    MS-Off Ver
    2013
    Posts
    35

    Re: Sliding scale prices #VALUE! error

    Hi Sandy666,
    Thanks for your explanation, I tried to do that but couldn't make it work. I'm afraid my knowledge of Excel is so little that I can't figure it out.
    Thank you for trying to help though, & thanks for solving the #VALUE! issue. But I think I'm going to have to find someone who can change the TOTAL row for me.
    Best regards,
    Julian.

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

    Re: Sliding scale prices #VALUE! error

    see attached file (and re-read previous post because was edited)

    btw. I forgot about IFERROR in column G. do it by yourself
    Do you want me to prepare workbook with step-by-step?
    Attached Files Attached Files
    Last edited by sandy666; 11-08-2017 at 11:31 AM.

  7. #7
    Registered User
    Join Date
    10-20-2017
    Location
    London
    MS-Off Ver
    2013
    Posts
    35

    Re: Sliding scale prices #VALUE! error

    Thank you for doing that, but unfortunately it doesn't seem to work how I need it to. I need to be able to add as many rows of panel sizes as required for a given job, this could be just 3 or 4, or it could be 100. So the cell that has the word SUBTOTAL in it, and the cell with the total figure in it needs to move down each time I enter an additional row of dimensions.
    The way that the original spreadsheet worked in this respect was perfect, but having added the quantity & final cost columns (F&G), I needed the total figure to be in column G rather than column E. If there's someway of just moving the current word SUBTOTAL & the totalled figure across from columns D&E to columns F&G that would be perfect.
    I'm sorry if my explanation isn't very good, and if I'm asking too much please let me know.
    Best regards,
    Julian.

  8. #8
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2407 (Windows 11 23H2 64-bit)
    Posts
    83,146

    Re: Sliding scale prices #VALUE! error

    In D3:

    =IF(A3*B3*C3/1000000=0,"",A3*B3*C3/1000000)

    In E3:

    =IF(AND(C3="",C2<>""),"SUBTOTAL:",IFERROR(IF($C3=1,VLOOKUP($D3,$I$2:$J$40,2,1),VLOOKUP($D3,$H$2:$J$40,3,1)),""))

    In G3:

    =IF(E3="SUBTOTAL:",SUM($G2:G3),IFERROR(E3*F3,""))

    Drag copy down.
    Last edited by AliGW; 11-09-2017 at 05:22 AM.
    Ali


    Enthusiastic self-taught user of MS Excel who's always learning!
    Don't forget to say "thank you" in your thread to anyone who has offered you help.
    You can reward them by clicking on * Add Reputation below their user name on the left, if you wish.

    Forum Rules (updated August 2023): please read them here.

  9. #9
    Registered User
    Join Date
    10-20-2017
    Location
    London
    MS-Off Ver
    2013
    Posts
    35

    Re: Sliding scale prices #VALUE! error

    Hi again Ali, thank you for jumping in again! As you can see I'm still trying to get this spreadsheet working properly. Embarrassed to say that I omitted a crucial part of it last time.
    I did what you said, & initially it seemed to work, but when I added another couple of rows of dimensions the total figure stopped appearing.
    Best regards,
    Julian.
    Attached Files Attached Files

  10. #10
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2407 (Windows 11 23H2 64-bit)
    Posts
    83,146

    Re: Sliding scale prices #VALUE! error

    Use the formulae I gave you in post #8. I am not going to have to copy and paste them in for you, surely?

  11. #11
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2407 (Windows 11 23H2 64-bit)
    Posts
    83,146

    Re: Sliding scale prices #VALUE! error

    It works perfectly here ...
    Attached Files Attached Files

  12. #12
    Registered User
    Join Date
    10-20-2017
    Location
    London
    MS-Off Ver
    2013
    Posts
    35

    Re: Sliding scale prices #VALUE! error

    No, I did copy & paste them in, and drag copied them down, but like I said initially it seemed to work, but when I added another couple of rows of dimensions the total figure stopped appearing.

  13. #13
    Registered User
    Join Date
    10-20-2017
    Location
    London
    MS-Off Ver
    2013
    Posts
    35

    Re: Sliding scale prices #VALUE! error

    There's no SUBTOTAL figure in column G though?

  14. #14
    Forum Expert
    Join Date
    05-05-2015
    Location
    UK
    MS-Off Ver
    Microsoft Excel for Microsoft 365 MSO (Version 2402 Build 16.0.17328.20068) 64-bit
    Posts
    28,595

    Re: Sliding scale prices #VALUE! error

    Try this in G3

    =IF(E3="TOTAL:",SUM($G$2:G2),IF(C3<>"",E3*F3,""))

  15. #15
    Registered User
    Join Date
    10-20-2017
    Location
    London
    MS-Off Ver
    2013
    Posts
    35

    Re: Sliding scale prices #VALUE! error

    HA! Yes that's it! Thank you AGAIN for your help Ali, much appreciated. I'll close this thread now.
    Best regards,
    Julian.

  16. #16
    Registered User
    Join Date
    10-20-2017
    Location
    London
    MS-Off Ver
    2013
    Posts
    35

    Re: Sliding scale prices #VALUE! error

    Oh... sorry I just noticed that John Topley sent that last post. Thank you for that John, hopefully that's the final piece of the jigsaw.
    Thanks again to everyone, Sandy, Ali & John, who helped me with this, I really appreciate it.
    Best regards,
    Julian.

  17. #17
    Registered User
    Join Date
    10-20-2017
    Location
    London
    MS-Off Ver
    2013
    Posts
    35

    Re: Sliding scale prices #VALUE! error

    Despite "Adding reputation" for Sandy & John, I can't add to yours again Ali, I'm getting the message... "You must spread some Reputation around before giving it to AliGW again."
    So I can only thank you again.
    Julian.

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

    Re: Sliding scale prices #VALUE! error

    O! I c problem is solved
    You are welcome and thanks for the feedback, Julian

  19. #19
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2407 (Windows 11 23H2 64-bit)
    Posts
    83,146

    Re: Sliding scale prices #VALUE! error

    Quote Originally Posted by Worldparty View Post
    Despite "Adding reputation" for Sandy & John, I can't add to yours again Ali, I'm getting the message... "You must spread some Reputation around before giving it to AliGW again."
    So I can only thank you again.
    Julian.
    That's kind - don't worry about the rep points: as long as the problem is solved, I'm happy.

+ 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] Sliding scale prices
    By Worldparty in forum Excel Formulas & Functions
    Replies: 50
    Last Post: 10-26-2017, 09:47 AM
  2. Sliding Scale
    By Brad0910 in forum Excel Formulas & Functions
    Replies: 3
    Last Post: 11-15-2016, 12:31 AM
  3. [SOLVED] Sliding Scale
    By jmalia in forum Excel Formulas & Functions
    Replies: 4
    Last Post: 01-13-2015, 09:02 PM
  4. [SOLVED] sliding scale
    By allgeef in forum Excel Formulas & Functions
    Replies: 4
    Last Post: 11-04-2014, 12:13 PM
  5. [SOLVED] Sliding Percentage Scale
    By allgeef in forum Excel Formulas & Functions
    Replies: 7
    Last Post: 06-19-2014, 08:29 AM
  6. sliding scale?
    By GardenGrow in forum Hello..Introduce yourself
    Replies: 2
    Last Post: 03-30-2014, 08:50 PM
  7. [SOLVED] sliding scale???
    By GardenGrow in forum Excel General
    Replies: 6
    Last Post: 03-29-2014, 01:15 PM

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