Topic Wiki

Rule 1: Did you try A.I? Right before you click post, give it a quick run. Most excel questions can be answered very quickly, thoroughly, and clearly via chatgpt. Wrong answer, or having trouble with the correct wording of the prompt? Post for help

=================
For cool Excel spreadsheet template to keep track of all Credit Card stuff, see here
« Last edited by Jojo202 on March 01, 2024, 12:09:44 AM »

Author Topic: Excel Help and Problems  (Read 290867 times)

Online Something Fishy

  • Global Moderator
  • Dansdeals Lifetime Presidential Platinum Elite
  • **********
  • Join Date: Jan 2011
  • Posts: 8861
  • Total likes: 6263
  • DansDeals.com Hat Tips 44
    • View Profile
    • Kosher Horizons
  • Location: Iceland
Re: Excel Help and Problems
« Reply #1180 on: May 15, 2018, 10:44:47 AM »
So how does Excel know which ones to add it to? Are you only applying the conditional formatting to those cells?

Correct.

You can do it in google sheets by applying a number format. Select the cell(s) you want, click Format > Number > More Formats > Custom Number Format. Enter this for the format:
Code: [Select]
#,#+(won't work if you have decimals, we'll have to tweak it then)

Awesome, thanks!

Worked great for 5000+ (I don't need decimals here), but isn't working for 100s. I suppose I could instead use 100+, 200+, etc. if needed.
Check out my site for epic kosher adventures: Kosher Horizons

Online etech0

  • Dansdeals Lifetime 10K Presidential Platinum Elite
  • *******
  • Join Date: Dec 2013
  • Posts: 12918
  • Total likes: 3370
  • DansDeals.com Hat Tips 1
    • View Profile
  • Location: not lakewood
  • Programs: DDF
Re: Excel Help and Problems
« Reply #1181 on: May 15, 2018, 10:45:57 AM »
Correct.

Awesome, thanks!

Worked great for 5000+ (I don't need decimals here), but isn't working for 100s. I suppose I could instead use 100+, 200+, etc. if needed.
Funny that it's not working for the 100, 200... it works for me. What's it showing you?
Workflowy. You won't know what you're missing until you try it.

Online Something Fishy

  • Global Moderator
  • Dansdeals Lifetime Presidential Platinum Elite
  • **********
  • Join Date: Jan 2011
  • Posts: 8861
  • Total likes: 6263
  • DansDeals.com Hat Tips 44
    • View Profile
    • Kosher Horizons
  • Location: Iceland
Re: Excel Help and Problems
« Reply #1182 on: May 15, 2018, 10:58:29 AM »
Funny that it's not working for the 100, 200... it works for me. What's it showing you?

It says invalid format as soon as I add the s.

Check out my site for epic kosher adventures: Kosher Horizons

Online etech0

  • Dansdeals Lifetime 10K Presidential Platinum Elite
  • *******
  • Join Date: Dec 2013
  • Posts: 12918
  • Total likes: 3370
  • DansDeals.com Hat Tips 1
    • View Profile
  • Location: not lakewood
  • Programs: DDF
Re: Excel Help and Problems
« Reply #1183 on: May 15, 2018, 10:59:53 AM »
It says invalid format as soon as I add the s.
Ah, I see. Try putting the s in quotes
Workflowy. You won't know what you're missing until you try it.

Online Something Fishy

  • Global Moderator
  • Dansdeals Lifetime Presidential Platinum Elite
  • **********
  • Join Date: Jan 2011
  • Posts: 8861
  • Total likes: 6263
  • DansDeals.com Hat Tips 44
    • View Profile
    • Kosher Horizons
  • Location: Iceland
Re: Excel Help and Problems
« Reply #1184 on: May 15, 2018, 11:01:02 AM »
Ah, I see. Try putting the s in quotes

Bingo!

Thanks a lot.
Check out my site for epic kosher adventures: Kosher Horizons

Online etech0

  • Dansdeals Lifetime 10K Presidential Platinum Elite
  • *******
  • Join Date: Dec 2013
  • Posts: 12918
  • Total likes: 3370
  • DansDeals.com Hat Tips 1
    • View Profile
  • Location: not lakewood
  • Programs: DDF
Re: Excel Help and Problems
« Reply #1185 on: May 15, 2018, 11:01:24 AM »
Workflowy. You won't know what you're missing until you try it.

Offline ChaimMoskowitz

  • Dansdeals Lifetime Presidential Platinum Elite
  • *********
  • Join Date: Jun 2014
  • Posts: 7232
  • Total likes: 1097
  • DansDeals.com Hat Tips 1
  • Gender: Female
    • View Profile
Re: Excel Help and Problems
« Reply #1186 on: June 06, 2018, 05:51:10 PM »
Cell 1 = Qty
Cell 2 = A or B
Cell 3 = Result

I want to multiply cell 1/cell 2.
If cell 2 is "A" I want to multiply cell 1 by 2.5%
If cell 2 is "B" I want to multiply cell 1 by 3%
What would be the formula for cell 3?
Hope this makes sense.
I just found a new supply of forks!

Offline Zubda

  • DansDeals Copper Elite
  • *
  • Join Date: Apr 2018
  • Posts: 19
  • Total likes: 4
  • DansDeals.com Hat Tips 0
    • View Profile
Re: Excel Help and Problems
« Reply #1187 on: June 06, 2018, 05:54:16 PM »
=cell1 * if(cell2="A",0.25,0.03)
Cell 1 = Qty
Cell 2 = A or B
Cell 3 = Result

I want to multiply cell 1/cell 2.
If cell 2 is "A" I want to multiply cell 1 by 2.5%
If cell 2 is "B" I want to multiply cell 1 by 3%
What would be the formula for cell 3?
Hope this makes sense.

Offline Yisroel Tech

  • Dansdeals Lifetime Platinum Elite
  • *******
  • Join Date: Dec 2015
  • Posts: 2162
  • Total likes: 365
  • DansDeals.com Hat Tips 2
  • Gender: Male
    • View Profile
  • Location: Monsey, NY
Re: Excel Help and Problems
« Reply #1188 on: June 06, 2018, 06:01:01 PM »
Cell 1 = Qty
Cell 2 = A or B
Cell 3 = Result

I want to multiply cell 1/cell 2.
If cell 2 is "A" I want to multiply cell 1 by 2.5%
If cell 2 is "B" I want to multiply cell 1 by 3%
What would be the formula for cell 3?
Hope this makes sense.
If I understood correctly, it'll be:
Code: [Select]
IF(A2="A",A1*2.5%,IF(A2="B",A1*3%,""))

Offline ChaimMoskowitz

  • Dansdeals Lifetime Presidential Platinum Elite
  • *********
  • Join Date: Jun 2014
  • Posts: 7232
  • Total likes: 1097
  • DansDeals.com Hat Tips 1
  • Gender: Female
    • View Profile
Re: Excel Help and Problems
« Reply #1189 on: June 06, 2018, 06:12:58 PM »
Thanks to both of you!!! First formula had to change 0.25 to 0.025
I was able to figure that one out.  :)
I just found a new supply of forks!

Offline Zubda

  • DansDeals Copper Elite
  • *
  • Join Date: Apr 2018
  • Posts: 19
  • Total likes: 4
  • DansDeals.com Hat Tips 0
    • View Profile
Re: Excel Help and Problems
« Reply #1190 on: June 06, 2018, 08:25:11 PM »
Thanks to both of you!!! First formula had to change 0.25 to 0.025
I was able to figure that one out.  :)
Sorry my mistake.. happy to help

Offline pinigee

  • Dansdeals Bronze Elite
  • *
  • Join Date: Oct 2015
  • Posts: 42
  • Total likes: 4
  • DansDeals.com Hat Tips 0
    • View Profile
  • Location: nyc
Re: Excel Help and Problems
« Reply #1191 on: July 05, 2018, 09:01:56 PM »
Hi there,
I want to calculate master carton sizes. For example I have a camera box that I need to ship 20 pcs to Amazon, I want a formula where I type in the size of the camera box and how many I need to ship it should tell me which size box I'll need..  even more if Excel can be smart enough to either give me a few options or perhaps can it be smart enough to give me normal size box that equals more or less proportion as opposed to giving me a narrow tall box.

Thanks in advance

Offline Yisroel Tech

  • Dansdeals Lifetime Platinum Elite
  • *******
  • Join Date: Dec 2015
  • Posts: 2162
  • Total likes: 365
  • DansDeals.com Hat Tips 2
  • Gender: Male
    • View Profile
  • Location: Monsey, NY
Re: Excel Help and Problems
« Reply #1192 on: July 06, 2018, 12:10:13 AM »
Hi there,
I want to calculate master carton sizes. For example I have a camera box that I need to ship 20 pcs to Amazon, I want a formula where I type in the size of the camera box and how many I need to ship it should tell me which size box I'll need..  even more if Excel can be smart enough to either give me a few options or perhaps can it be smart enough to give me normal size box that equals more or less proportion as opposed to giving me a narrow tall box.

Thanks in advance
Far too complicated than what I believe Excel can do. See here https://stackoverflow.com/questions/140406/how-can-i-programmatically-determine-how-to-fit-smaller-boxes-into-a-larger-pack

Offline Definitions

  • Dansdeals Lifetime Platinum Elite
  • *******
  • Join Date: Jan 2018
  • Posts: 1791
  • Total likes: 480
  • DansDeals.com Hat Tips 3
    • View Profile
Re: Excel Help and Problems
« Reply #1193 on: July 06, 2018, 01:28:39 AM »
Hi there,
I want to calculate master carton sizes. For example I have a camera box that I need to ship 20 pcs to Amazon, I want a formula where I type in the size of the camera box and how many I need to ship it should tell me which size box I'll need..  even more if Excel can be smart enough to either give me a few options or perhaps can it be smart enough to give me normal size box that equals more or less proportion as opposed to giving me a narrow tall box.

Thanks in advance
I can't help you, but you were michavein exactly to an app I wanted to develop. If only I knew how to code.
My Tapatalk notifications don't always work.

Offline skyguy918

  • Dansdeals Presidential Platinum Elite
  • ********
  • Join Date: Mar 2011
  • Posts: 4075
  • Total likes: 835
  • DansDeals.com Hat Tips 1
  • Gender: Male
    • View Profile
  • Location: Queens, NY
Re: Excel Help and Problems
« Reply #1194 on: July 06, 2018, 01:37:00 AM »
Far too complicated than what I believe Excel can do. See here https://stackoverflow.com/questions/140406/how-can-i-programmatically-determine-how-to-fit-smaller-boxes-into-a-larger-pack
Excel can handle it just fine, though it would obviously not be the optimal tool for the job. The issue is having the mathematical know how and programming skill to pull it off, no matter the tool.

Anyway, to the OP, just search 3d bin packing calculator - you should be able to find something useful pretty quickly.

Online etech0

  • Dansdeals Lifetime 10K Presidential Platinum Elite
  • *******
  • Join Date: Dec 2013
  • Posts: 12918
  • Total likes: 3370
  • DansDeals.com Hat Tips 1
    • View Profile
  • Location: not lakewood
  • Programs: DDF
Re: Excel Help and Problems
« Reply #1195 on: July 06, 2018, 09:55:43 AM »
Excel can handle it just fine, though it would obviously not be the optimal tool for the job. The issue is having the mathematical know how and programming skill to pull it off, no matter the tool.
+1, you can do almost anything with VBA, the question is if you should
Workflowy. You won't know what you're missing until you try it.

Offline churnbabychurn

  • Dansdeals Lifetime Presidential Platinum Elite
  • *********
  • Join Date: Jul 2012
  • Posts: 7647
  • Total likes: 301
  • DansDeals.com Hat Tips 0
    • View Profile
  • Location: Lakewood
Re: Excel Help and Problems
« Reply #1196 on: July 07, 2018, 10:09:46 PM »
Excel can handle it just fine, though it would obviously not be the optimal tool for the job. The issue is having the mathematical know how and programming skill to pull it off, no matter the tool.

Anyway, to the OP, just search 3d bin packing calculator - you should be able to find something useful pretty quickly.
+1 I would think it's just a math thing that Excel can definitely do

Offline yesitsme

  • Dansdeals Lifetime Presidential Platinum Elite
  • *********
  • Join Date: Dec 2014
  • Posts: 5116
  • Total likes: 2238
  • DansDeals.com Hat Tips 4
  • Gender: Male
    • View Profile
Re: Excel Help and Problems
« Reply #1197 on: July 16, 2018, 05:15:03 PM »
UniqueFirstLast
1dandeals
1dandeals
2jjdeals
3chaimMoskowits
4mosheaygayrt

How do You add a number if first and last arent the same?

Code: [Select]
=IF(B1&C1<>B2&C2,A1+1,A1)


 
["-"]

Online etech0

  • Dansdeals Lifetime 10K Presidential Platinum Elite
  • *******
  • Join Date: Dec 2013
  • Posts: 12918
  • Total likes: 3370
  • DansDeals.com Hat Tips 1
    • View Profile
  • Location: not lakewood
  • Programs: DDF
Re: Excel Help and Problems
« Reply #1198 on: July 16, 2018, 06:43:05 PM »
UniqueFirstLast
1dandeals
1dandeals
2jjdeals
3chaimMoskowits
4mosheaygayrt

How do You add a number if first and last arent the same?

Code: [Select]
=IF(B1&C1<>B2&C2,A1+1,A1)
Code: [Select]
=IF(OR(B3<>B2,C3<>C2),A2+1,A2)Note: it doesn't actually check for unique, just if it's the same as the row above, so your data needs to be sorted
Workflowy. You won't know what you're missing until you try it.

Offline ChaimMoskowitz

  • Dansdeals Lifetime Presidential Platinum Elite
  • *********
  • Join Date: Jun 2014
  • Posts: 7232
  • Total likes: 1097
  • DansDeals.com Hat Tips 1
  • Gender: Female
    • View Profile
Re: Excel Help and Problems
« Reply #1199 on: September 12, 2018, 11:52:09 AM »
How do I copy a sheet (tab on the bottom) from one file to another?
I just found a new supply of forks!