Reputation: 13
I have a table with some data (all unique) like:
id Name Surname Age
1 Jack Gong 21
2 Danny Manny 24
If I insert one more row and write only surname as Gong
to the cell, then is there any Excel function that fills the "Age", "Name" and "id" automatically to 21
, Jack
and 1
?
Upvotes: 1
Views: 48
Reputation: 27249
There is no automatic way (outside of a VBA procedure, perhaps) to do this, but you can set something up that will do it through formulas:
Upvotes: 1