• 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.

Insert numbers into the respective date

Soleblue

New Member
Good evening guys,
could you help me with a formula (or with vba) to put the numbers of column G in the corresponding days of column B?
I don't remember anything anymore :rolleyes:

Thanks a lot :)
 

Attachments

try
=INDEX($G$2:$G$1000,MATCH(A2,$F$2:$F$1000,0))

copy down -

maybe add an IFERROR()

=IFERROR(INDEX($G$2:$G$1000,MATCH(A2,$F$2:$F$1000,0)),"")

what version of excel do you have
xlookup() would work
=XLOOKUP(A2,$F$2:$F$1000,$G$2:$G$1000,"")

filter()
 
Hi guys,
neither of the 2 works, if I'm not mistaken
I use 365 (Italian)
so I have to translate the formulas and instead of "." I think I have to use ";" , correct?
 
try
=INDEX($G$2:$G$1000,MATCH(A2,$F$2:$F$1000,0))

copy down -

maybe add an IFERROR()

=IFERROR(INDEX($G$2:$G$1000,MATCH(A2,$F$2:$F$1000,0)),"")

what version of excel do you have
xlookup() would work
=XLOOKUP(A2,$F$2:$F$1000,$G$2:$G$1000,"")

filter()

=XLOOKUP(A2,$F$2:$F$1000,$G$2:$G$1000,"")
this works :DD
 
Back
Top