내 커뮤니티 업적 표시줄을 확대합니다.

Submissions are now open for the 2026 Adobe Experience Maker Awards.

Mark Solution

활동이 없어 이 대화는 잠겼습니다. 새 게시물을 작성해 주세요.

해결됨

Can you group by a Text Mode Column in a report?

Avatar

Level 4

Good afternoon,

I was wondering if there was a way to group a report by a Text Mode Column.

I have a report that Text Mode to display if a task is On Time or Late based on the completion date:

displayname=On Time

textmode=true

valueexpression=IF({actualCompletionDate}<={plannedCompletionDate},"On Time",IF({actualCompletionDate}<={handoffDate},"On Time","Late"))

valueformat=

I would love to get this into a graph that would show the completion date and then split ones that were completed on that day based on if they were on time or late. But I am not able to select that custom column as a grouping. Just trying to avoid having to export into excel to sort them all the time.

Thank you,

Kristina

주제

토픽은 커뮤니티 콘텐츠를 분류하여 관련성 있는 콘텐츠를 찾는 데 도움이 됩니다.

1 채택된 해결책 개

Avatar

정확한 답변 작성자:
Level 2

Yes, you would just rewrite your expression as a formula when building a calculated field, like so:

IF(Actual Completion Date<=Planned Completion Date, "On Time", IF(Actual Completion Date<=Handoff Date, "On Time", "Late"))

원본 게시물의 솔루션 보기

5 답변 개

Avatar

Level 8

Unfortunately grouping and charts can only be done if you create a calculated field on that object.

Avatar

Level 4

Is there a way to get the same result as I have above where it says if it is On Time or Late through a calculated field?

Avatar

정확한 답변 작성자:
Level 2

Yes, you would just rewrite your expression as a formula when building a calculated field, like so:

IF(Actual Completion Date<=Planned Completion Date, "On Time", IF(Actual Completion Date<=Handoff Date, "On Time", "Late"))

Avatar

Level 1

Hi Angelo,

I tried to follow these directions for a report with a custom column, but could not get it to work.

My value expression code is below:

displayname=Task Priority
textmode=true
valueexpression=IF(CONCAT({priority},' ',{isCritical})="4 true", "1",IF(CONCAT({priority},' ',{isCritical})="4 false", "1",IF(CONCAT({priority},' ',{isCritical})="3 true", "2",IF(CONCAT({priority},' ',{isCritical})="3 false", "3", IF(CONCAT({priority},' ',{isCritical})="2 true", "4", IF(CONCAT({priority},' ',{isCritical})="2 false", "5", IF(CONCAT({priority},' ',{isCritical})="1 true", "6", IF(CONCAT({priority},' ',{isCritical})="0 true", "6", "7"))))))))
valueformat=

 

Would you please reply with everything I need to include to wizard this into a calculated field?

Thank you so much!!!!

Val

Avatar

Level 4

Angelo, thank you so much! That worked perfectly. I will be glad to not have to do any manual data manipulation to get the results we want! - Kristina