Help with a formula that would update column information

kimparker0261

New Member
Joined
Jan 8, 2019
Messages
30
In my spread sheet
In cell I10, I need a formula that would input the date out of cell ,Input!G10 if the data is greater than zero and if it is less then zero then delete the row all together..
form.

This is the formula that I have currently
=IF(Input!G10>0,Input!I10,"")

However I need this formula to be able to delete the row if the argument is true that the column is greater than 0.
 

Excel Facts

Which came first: VisiCalc or Lotus 1-2-3?
Dan Bricklin and Bob Frankston debuted VisiCalc in 1979 as a Visible Calculator. Lotus 1-2-3 debuted in the early 1980's, from Mitch Kapor.
A formula can not change data in other cells. You would either need formulas in the other cells to return blank or VBA to clear the data.
 
Upvote 0
Something like this should work
Code:
=IF(Input!G10>0,what you want in the cell here,"")
 
Upvote 0
I would want the argument to read, if Input!G10 is greater than zero then display the information in I10 but if it is not then hide the lines. or delete the lines.

 
Upvote 0
To hide or delete you would need to use VBA.

If you need help with the VBA please post your data and exactly what you want to do.
 
Last edited:
Upvote 0
What do you suggest

I am working on a document that I am asking for people to input their data on one sheet and whatever they input on the sheet would output on another sheet if it have a qty of more than 0, also I would like for the sheet to not have blank lines and all the data be there together do you have an idea of how I could get this to work.
 
Upvote 0
I would probable create a loop that would check the data and copy it over when the code is run.
 
Upvote 0
To write the code I would need to know the layout of the data and the sheet names.
 
Upvote 0

Forum statistics

Threads
1,214,652
Messages
6,120,747
Members
448,989
Latest member
mariah3

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