To copy the cell content you would need VBA. My suggestion is to use event handler for Change event in Sheet2:
But to have it working properlu in case you enter a whole new pair of values, you would need to clear the A2:B2 content before.
Otherwise you enter new A2 and oldB2*newA2 will be calculated (this result is not needed) and then when you enter also new B2 proper result newB2*newA2 is stored in first available cell in column E.
But probably it would be better to write these pairs to be multiplied in consequtive rows. Then the code would be:
See attached file (macros execution have to be enabled).
Bookmarks