• Hi All

    Please note that at the Chandoo.org Forums there is Zero Tolerance to Spam

    Post Spam and you Will Be Deleted as a User

    Hui...

  • When starting a new post, to receive a quicker and more targeted answer, Please include a sample file in the initial post.

Data in each alternative cell

arif

Member
Suppose i want to copy each cell data in an alternative cell by formula how can i do it

i have attached sample file where i have done it manually

now want to use formula for doing it autimatically
 

Attachments

  • Alternative cell data.xlsx
    8.3 KB · Views: 9
If starting in an even row:
=IF(MOD(ROW(),2)=0,100,"")
If an odd row:
=IF(MOD(ROW(),2)=1,100,"")
 
Arif,
I guess you want formula want to copy from alternate cells, right?

to answer you need to share where you want this data to be pasted.

Regards,
Prasad DN
 
Back
Top