What I’m trying to do
Title: Is it possible to use DataView to display whether specific keywords exist in items (files) based on different folder names?
For example, There are files in two different folders
in Folder A:
- cpp_1
- cpp_2
- cpp_3
- cpp_4
In Folder B:
- py_1
- py_3
- py_5
- py_7
I would like to represent it in the following table:
wanna list only unique problem number and show either they exist in folder A or B
No. “cpp” “py”
-
o o
-
o x
-
o o
-
o x
-
x o
-
x o
Things I have tried
I have no idea how to combine duplicate problem numbers.
TABLE
name,
contains(file.name, "cpp") as "C++",
contains(file.name, "py") as "Python"
FROM "2. Area/BOJ Problem Solve"
WHERE contains(tags, "23-10") AND (contains(file.name, "cpp") OR contains(file.name, "py"))