Skip to main content
Madison Kress 님이 #Reports & Dashboards에 질문했습니다

I have a report that shows a daily log. There are 3 fields for AM, Midday, and PM. I am trying to see if there is a row level formula I could use to count how many of those 3 fields do NOT contain "Not Logged". 

답변 1개
  1. 2024년 6월 11일 오후 2:48

    For that you could use a Formula field or a Row-Level Report formula like this

     

    CASE( Field_A , 'Not Logged',0, 1 ) +

    CASE( Field_B , 'Not Logged',0, 1 ) +

    CASE( Field_C , 'Not Logged',0, 1 )

0/9000