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

Pull Data in Specific format

Abhijeet

Active Member
Hi

I have data i want to pull values in Period cash column assignment wise then pull units also in attach file i show how data looks like & those values need to pull in period cash column highlighted in Red color & Unit column highlighted in blue color please tell me how to do this
 

Attachments

  • Element wise.xlsx
    10.8 KB · Views: 6
use below formula in c column
=IF(VLOOKUP(A9,Sheet1!A:I,7,0)<>0,VLOOKUP(A9,Sheet1!A:I,7,0),IF(VLOOKUP(A9,Sheet1!A:I,8,0)<>0,VLOOKUP(A9,Sheet1!A:I,8,0),(VLOOKUP(A9,Sheet1!A:I,9,0))))

use below formula in d column
=IF(VLOOKUP(A9,Sheet1!A:I,3,0)<>0,VLOOKUP(A9,Sheet1!A:I,3,0),IF(VLOOKUP(A9,Sheet1!A:I,4,0)<>0,VLOOKUP(A9,Sheet1!A:I,4,0),(VLOOKUP(A9,Sheet1!A:I,5,0))))
 
how to cut paste the row with help of formula i need find the date criteria then cut paste that row so i need macro for this data is huge
 
use below formula in c column
=IF(VLOOKUP(A9,Sheet1!A:I,7,0)<>0,VLOOKUP(A9,Sheet1!A:I,7,0),IF(VLOOKUP(A9,Sheet1!A:I,8,0)<>0,VLOOKUP(A9,Sheet1!A:I,8,0),(VLOOKUP(A9,Sheet1!A:I,9,0))))

use below formula in d column
=IF(VLOOKUP(A9,Sheet1!A:I,3,0)<>0,VLOOKUP(A9,Sheet1!A:I,3,0),IF(VLOOKUP(A9,Sheet1!A:I,4,0)<>0,VLOOKUP(A9,Sheet1!A:I,4,0),(VLOOKUP(A9,Sheet1!A:I,5,0))))
I use this formual but not give any result i want from Column M to U if any date find then look that date is 6 month older from Current month or not & also not greater that todays date if match both case then cut paste that row
 
Back
Top