Forum Discussion
Phobosd
Mar 28, 2020Copper Contributor
[SOLVED]Using another sheet like function
Hi! It is general question about Excel. No certain examples i can attach. I have 2 sheets. "Sheet 1" contains input data columns and result column. "Sheet 2" calculates result using many oper...
- Mar 29, 2020
Phobosd What you describe is achieved by User Defined Functions (requires VBA programming) or by what is often referred to as "helper" columns, where each column contains a formula that solves part of the problem. The attached workbook contains a very simple example of both. You only need to imagine that the three calculations in this example are in fact the "hard calculations too complicated to be described with one formula" that you mentioned.
SergeiBaklan
Mar 29, 2020Diamond Contributor
As variant you may perform calculations column by column for each row in source sheet. Thus each row in calculation sheet will be mapped on each row in source sheet.
- PhobosdMar 29, 2020Copper ContributorThanks! I'll think about it more...