aparvez007 Member Oct 14, 2019 #1 Hi, Please help me to solve the formula for my dashboard. I have spreadsheet where I will update the price daily I want current value column U should calculate the last updated price. Sample file attached. Thanks, pAvi Attachments Sample Tracker.xlsx 12.7 KB · Views: 6
Hi, Please help me to solve the formula for my dashboard. I have spreadsheet where I will update the price daily I want current value column U should calculate the last updated price. Sample file attached. Thanks, pAvi
herofox Active Member Oct 14, 2019 #2 TRY THIS Code: =IFERROR(B8*LOOKUP(2,1/((C8:T8>0)),C8:T8),"") Attachments Sample Tracker-1.xlsx 12.8 KB · Views: 10
aparvez007 Member Oct 14, 2019 #3 herofox said: TRY THIS Code: =IFERROR(B8*LOOKUP(2,1/((C8:T8>0)),C8:T8),"") Click to expand... Thanks alot perfect fit
herofox said: TRY THIS Code: =IFERROR(B8*LOOKUP(2,1/((C8:T8>0)),C8:T8),"") Click to expand... Thanks alot perfect fit
B bosco_yip Excel Ninja Oct 15, 2019 #4 Or this shorter one =IF(B8="","",B8*LOOKUP(9^9,C8:T8)) Regards Bosco
aparvez007 Member Oct 15, 2019 #5 bosco_yip said: Or this shorter one =IF(B8="","",B8*LOOKUP(9^9,C8:T8)) Regards Bosco Click to expand... Thanks this too working
bosco_yip said: Or this shorter one =IF(B8="","",B8*LOOKUP(9^9,C8:T8)) Regards Bosco Click to expand... Thanks this too working