Created
June 2, 2023 09:44
-
-
Save vinzcelavi/bf553d79477cb180844c19466af6f3f2 to your computer and use it in GitHub Desktop.
Notion formula
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if( | |
and( | |
prop("Nombre de familles de cookies connu") == ">=4", | |
prop("Connaissances en protection de la donnée personnelle") == ">3" | |
), | |
"Datainstructor", | |
if( | |
prop("Nombre de familles de cookies connu") == ">=4", | |
if( | |
prop("Connaissances en protection de la donnée personnelle") == "<=3", | |
if( | |
prop("Connaissances en informatique") == "5+", | |
"Datainstructor", | |
"" | |
), | |
"" | |
), | |
if( | |
prop("Nombre de familles de cookies connu") == "<4", | |
if( | |
prop("Connaissances en informatique") == "4", | |
"Velocicookies", | |
if( | |
and( | |
prop("Connaissances en informatique") == "3", | |
prop("Adblocker") == "oui" | |
), | |
"Velocicookies", | |
"Newbie" | |
) | |
), | |
"" | |
) | |
) | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment