Reputation: 164
I'm Trying it:
=FILTER('Orginal'!A:D, 'Orginal'!D:D="Complete")
Screens:
And i have Error. "formula analysis error"
What im doing wrong?
Upvotes: 1
Views: 2924
Reputation: 2037
You are having a syntax error here:
Please use the following formula:
=FILTER('Orginal'!A2:D, 'Orginal'!D2:D="Complete")
It turns out the solution had to do with the spreadsheet location.
The location of the spreadsheet can determine if the formulas have either a comma
or a semicolon
, as well as the format of the dates. To change your location of the spreadsheet, you can do it in:
file => spreadsheet settings => locale
and change the locale there.
Upvotes: 1
Reputation: 164
Yeah bad screen.. but i found it... it was problem with this:
It shoud be :
=FILTER(Orginal!A:D;Orginal!D:D="Complete")
i changed "," to ";"
Upvotes: 1