Forum Discussion
data validation on two cells gives result in third cell
- Jan 12, 2021
Hi,
The Weight Tracker is look great 🙂
So to explain, taking an Old English, she weighed in at 15.3Kg, her target weight is 23 to 27Kgs
Which means she is between 7Kg and 11.7Kg under her true weight.
In C10 it would give the difference from the weight and target weight
C11 it would give the date to the target weight in this case 23 to 27Kg if she gains 1 Kg a week, 7 to 11.7 weeks
Sorry if am not explaining myself right.
If an Example is your source data, you may use INDEX(range,MATCH(),MATCH()) on it. First MATCH to select row from Breed list. Second MATCH to select column, or it simply could be =IF(Gender=Dog,1,2)
- UKAndyJan 09, 2021Copper Contributor
I have two TABs one labelled (WeightGoals) and the other (Ideally Weight).
WeightGoals (TAB)
On the weight tab, I enter the start date (8-Jan) and the starting Weight 15.3, below I select the breed from a list populated from the Tab (Ideally Weight).
Ideally Weight (TAB)
So selecting the Breed (Airedale Terrier) then the gender (Male) it would give me a Target Weight of
20 to 23
- SergeiBaklanJan 09, 2021Diamond Contributor
When as suggested before. Drop-down list for the Breed will be Ideally Weight[Breed] column, for Gender just Male,Female.
If we name as Range data in both Male and Female columns of Ideally Weight, when Target Weight could be taken as
=INDEX(Range, MATCH(Breed, IdeallyWeight[Breed], 0), IF(Gender="Male",1,2) )
- UKAndyJan 10, 2021Copper Contributor
When entering that formula I get a #NAME? error
Ideally Weight (TAB)
I really appreciate your support in this 🙂