Hi,
Hoping for some guidance and help in the right direction or alternative solution.
Trying to get Estimated Total in Summary sheet to return the proper calculation of Each Site reference, which are pulled from another master sheet reference.
The Estimated Total is calculated based on Location site reference, Years, Scope type[multi-select fields].
for example:
Summary sheet it is referencing first Year 1, Tropic , Annual should return Estimate : $1500
Column: Site Reference, Years, Location , Scope Type, Estimate
Year 1, Year 2, Year 3 [Single select fields]
Location A , Location B, Location C [Single select fields]
Scope Type A, Scope Type B, Scope Type C - [Multi-select fields]
Estimate A, Estimate B, Estimate C
Alternatively, (if selected
Years = Year 1
Site Reference: Tropic
Scope Type: Annual, Semi-Annual & 3 Year Test
Estimated Total: $ 5,800 (getting errors on Summary sheet)
using reference from Master sheet
Master Sheet Reference:
Column: Year, Location , Scope Type, Estimate
Year 1, Year 2, Year 3
Location A , Location B, Location C
Scope Type A, Scope Type B, Scope Type C - [Multi-select fields]
Estimate A, Estimate B, Estimate C
On Main Summary Sheet
=IF([Scope Type]@row = "Annual", INDEX((COLLECT({Estimate Tropic A}, {Year Tropic A}, Years@row, {Location Tropic A}, [Site Reference]@row, {Scope Type Tropic A}, "Annual")), 1)IF([Scope Type]@row = "Semi-Annual", INDEX((COLLECT({Estimate Tropic A}, {Year Tropic A}, Years@row, {Location Tropic A}, [Site Reference]@row, {Scope Type Tropic A}, "Semi-Annual")), 1),IF([Scope Type]@row = "3 Year Test", INDEX((COLLECT({Estimate Tropic A}, {Year Tropic A}, Years@row, {Location Tropic A}, [Site Reference]@row, {Scope Type Tropic A}, "3 Year Test")), 1))
I am using column Estimate Location A, Estimate Location B, Estimate Location C to test that each site reference is calculating properly (like helper columns to check), but if there is a better way to include all three that would be great as well!
is there an easier way to do this? or fix this formula?
I am open to any suggestions,
Thank you!