简体   繁体   中英

Excel how to transfer data from one sheet to another sheets

I face with problem in Excel . The problem is I have a 3 sheets I need to transfer from one sheet to another sheets data.

For Example: I have a data in colums AB C D and E. In column E I have digits positive or negatives and I need to transfer data in columns AB C D to near and far sheets if in column E number is position transfer AB C D data to near Sheet else to far sheet. enter image description here

How to do it. Does anyone know it? please help me!

Thanks a lot!!!

For positive values use-

=FILTER(Sheet1!A:D,Sheet1!E:E>0)

For negative values use-

=FILTER(Sheet1!A:D,Sheet1!E:E<0)

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM