hello,
i have a question for the professionals here
in my dataview output I have a setting (status as checkbox in properties).
in the output, however, a true appears if the checkbox is activated and a false if it is not selected.
is there a way to get an icon here?
i would like to use a text field instead of a checkbox in the properties.
maybe there is a way?
```dataview
table WITHOUT ID link(file.path, dateformat(file.day, "cccc, dd MMMM yyyy")) as "Rechnungsnummer", dateformat(Bezahlt, "cccc, dd MMMM yyyy") as "Beglichen am:", Status
from "Rechnungen"
where !contains(file.name, "Rechnungen")
sort bezahlt asc
MrYod
February 8, 2024, 5:57pm
2
A solution can be found here:
I recommend using the choice() function for this.
I suggest starting with formatting the field in the TABLE clause and see if that meets your needs:
```dataview
TABLE
choice(Field1, " ", "☐") as Field1,
choice(Field2, " ", "☐") as Field2
WHERE file.name = this.file.name
```
You could also use FLATTEN to create new fields and then refer to them in the TABLE clause. It’s more complicated, but also more flexible:
```dataview
TABLE
Field1Checkbox as Field1,
Field2Checkbox as Field2
FLATT…
2 Likes
system
Closed
February 16, 2024, 12:15pm
3
This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.