여기를 누르시면 페이지를 복제할 수 있습니다.
/* 1개만 세기 */
prop("프로젝트 DB").filter(current.prop("구분")=="문서").length()
/* 여러 개 동시에 세기 */
lets(
문서,prop("프로젝트 DB").filter(current.prop("구분")=="문서").length(),
회의,prop("프로젝트 DB").filter(current.prop("구분")=="회의").length(),
학습,prop("프로젝트 DB").filter(current.prop("구분")=="학습").length(),
리뷰,prop("프로젝트 DB").filter(current.prop("구분")=="리뷰").length(),
기타,prop("프로젝트 DB").filter(current.prop("구분")=="기타").length(),
"문서: "+ 문서 + "개" + "\n" +
"회의: "+ 회의 + "개" + "\n" +
"학습: "+ 학습 + "개" + "\n" +
"리뷰: "+ 리뷰 + "개" + "\n" +
"기타: "+ 기타 + "개"
)
HTML
복사