I have a data set that is dynamic and refreshes every 5 seconds. I would like to do several things to this data set.
1. Hide any rows that have a value of 0 in column B
2. Unhide any rows that have a value <>0 in column B
3. Sort the remaining unhidden columns descending by column B
4. Repeat this whole process every time the data changes
Here is a sample of my data:
Country P&L Bps
Japan -9,206,300 (0.0037)
United States -1,819,537 (0.0007)
Germany -364,430 (0.0001)
Taiwan -26,211 (0.0000)
Singapore -17,596 (0.0000)
Canada -7,421 (0.0000)
Malaysia -3,493 (0.0000)
Argentina 0 0.0000
Argentina 0 0.0000
Austria 0 0.0000
Bangladesh 0 0.0000
Belgian Francs 0 0.0000
Belgium 0 0.0000
Belize 0 0.0000
It might be helpful to note that column B data is a formula reading off of another worksheet (=SUMIF('All Data'!$Z$2:$Z$10009,"MAL",'All Data'!$D$2:$D$10009))
I hope someone can help. Everything I try is to no avail. Thank you for your time.
1. Hide any rows that have a value of 0 in column B
2. Unhide any rows that have a value <>0 in column B
3. Sort the remaining unhidden columns descending by column B
4. Repeat this whole process every time the data changes
Here is a sample of my data:
Country P&L Bps
Japan -9,206,300 (0.0037)
United States -1,819,537 (0.0007)
Germany -364,430 (0.0001)
Taiwan -26,211 (0.0000)
Singapore -17,596 (0.0000)
Canada -7,421 (0.0000)
Malaysia -3,493 (0.0000)
Argentina 0 0.0000
Argentina 0 0.0000
Austria 0 0.0000
Bangladesh 0 0.0000
Belgian Francs 0 0.0000
Belgium 0 0.0000
Belize 0 0.0000
It might be helpful to note that column B data is a formula reading off of another worksheet (=SUMIF('All Data'!$Z$2:$Z$10009,"MAL",'All Data'!$D$2:$D$10009))
I hope someone can help. Everything I try is to no avail. Thank you for your time.