Skip to content
Snippets Groups Projects
Unverified Commit d9d8c688 authored by Leo Paillier's avatar Leo Paillier Committed by GitHub
Browse files

Fixes code snippet typo with extra closing parenthsis in case expression (#40873)

parent f52d2f09
Branches
Tags
No related merge requests found
......@@ -57,7 +57,7 @@ where **Sighting Type** is a custom column with the expression:
```
case([Has Wings] = TRUE AND [Has Face] = TRUE, "Bird",
[Has Wings] = TRUE AND [Has Face] = FALSE, "Plane",
[Has Wings] = FALSE AND [Has Face] = TRUE, "Superman"), "Unknown")
[Has Wings] = FALSE AND [Has Face] = TRUE, "Superman", "Unknown")
```
You can use the columns holding your "labels" to:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment