Welcome to Software Development on Codidact!
Will you help us build our independent community of developers helping developers? We're small and trying to grow. We welcome questions about all aspects of software development, from design to code to QA and more. Got questions? Got answers? Got code you'd like someone to review? Please join us.
Delete specific cells with shift cells up
Answers to Excel - Get only values from column that are not Zero “0” asked by @CiscoNewb includes ones applying AGGREGATE:
=IFERROR(INDEX(A:A,AGGREGATE(15,6,ROW(A$2:A$12)/(A$2:A$12>0),ROW(A1))),"") from @bosco-yip and FILTER from @Harun24HR (Excel 365):
=FILTER(A2:A12,A2:A12>0)
This sample was provided:
ColumnA: 1|0|10|9|2|20|3|5|14|15 ColumnB: 0|5|28|0|20|12|4|0|18|1
For those without the above functions, is there another way, preferably not requiring any function?
0 comment threads