Multiple Functions - Help

mystic19

New Member
Joined
Apr 27, 2024
Messages
3
Office Version
  1. 365
Platform
  1. Windows
Hi, I have an idea of what I want to do but not sure how to execute it or if it is possible since it involves multiple roles.

In column "E" for "Additional?" :
  • When '0 is inserted, I want it to automatically populate "N/A" into column "F" ("Expiry Date").
  • When '+1 is inserted, I want it to leave column "F" blank, however, I want it to do a SUM of column "C" (Volume Available) and "B" (Stock Volume) in its respective cell in column "G" (Total Volume Available).
  • Similarly, if '+2 is inserted it should do the same as the above but just double the Stock Volume value in the final SUM equation.
Any help with this will be greatly appreciated, Thanks!
 

Attachments

  • Screenshot 2024-04-28 104332.png
    Screenshot 2024-04-28 104332.png
    47.6 KB · Views: 4

Excel Facts

Workdays for a market open Mon, Wed, Friday?
Yes! Use "0101011" for the weekend argument in NETWORKDAYS.INTL or WORKDAY.INTL. The 7 digits start on Monday. 1 means it is a weekend.
That would be this.
Mappe18
BCDEFG
3Stock volumeVolume availableAdditionalExpiry dateTotal volume available
4580#NV 
51244+1 56
6734+2 82
Tabelle1
Cell Formulas
RangeFormula
F4:F6F4=IF(--E4=0,NA(),"")
G4:G6G4=IF(--E4=0,"",E4*(B4+C4))
 
Upvote 0

Forum statistics

Threads
1,215,824
Messages
6,127,109
Members
449,359
Latest member
michael2

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top