⚙ Operations Hub

00000
Top Contributor

Dataset values not matching report values

SOLVE

Hello,

 

I think I missed a part of documentation. Could someone please point me in the right direction to solve the issue below? How do I get the dataset forumla field value to display in the custom report?

Dataset forumla field value is not appearing in custom report. Custom report data source is only the corresponding dataset.

 

The excel line in the screenshow below reflects the values as pulled from the custom report. In the report, the dataset formula fields reflect no value. In the dataset itself, the formula fields display the expected numerical values of one or zero (second set of data in screenshot).

Dataset v report.png

0 Upvotes
1 Accepted solution
00000
Solution
Top Contributor

Dataset values not matching report values

SOLVE

HubSpot support was able to assist. Sharing answer here in case someone else ever needs this.

 

The error was in parenthesis. While all were closed, there were too many.

 

What I wrote:

(IF(([Day Difference]<91)AND([Day Difference]>0),[TICKET.dataset_count], 0))

 

Correct Formula:

IF([Day Difference]<91 AND [Day Difference]>0 ,[Dataset Count],0)

View solution in original post

3 Replies 3
00000
Solution
Top Contributor

Dataset values not matching report values

SOLVE

HubSpot support was able to assist. Sharing answer here in case someone else ever needs this.

 

The error was in parenthesis. While all were closed, there were too many.

 

What I wrote:

(IF(([Day Difference]<91)AND([Day Difference]>0),[TICKET.dataset_count], 0))

 

Correct Formula:

IF([Day Difference]<91 AND [Day Difference]>0 ,[Dataset Count],0)

NOlah
HubSpot Moderator
HubSpot Moderator

Dataset values not matching report values

SOLVE

Hello @00000, Thank you for contacting us!

Could you please give us more context about the goal you want to achieve? For example, could you share what Dataset you're using and a screenshot of your Formula Field? The more information, screenshots, and examples you provide, the better we can help you.

I'd also like to 
consult our experts to see if they have any suggestions for you.

Hello @johnelmer, @louischausse, @HubSpot_Corey, do you happen to have any ideas that could help @00000 with their goal? Thank you all for contributing.

 

Thank you,

Noémi

0 Upvotes
00000
Top Contributor

Dataset values not matching report values

SOLVE

Thank you, Noémi. Additional information below.


Could you please give us more context about the goal you want to achieve? For example, could you share what Dataset you're using and a screenshot of your Formula Field?

End goal: To show closed ticket per ticket owner within 90, 30, and 7 days on a pivot table report. Expected final table results will be ticket owner + a sum of the 90 day count, 30 day count, and 7 day count formula fields with a value of 1 in their respective columns. However, these three fields reflect "no value" inside reports even though the dataset reflects the values 1 or 0 values accurately.

  • Using pivot table to show the three categories because the number of requested reports exceeds dash limit.
  • Using dataset because we also need to include additional calculated properties like working days, but the beta limits us to 3 formula properties per custom report.
  • This dataset is solely based on tickets.

Dataset Count is a numeric property that is set to "1" via workflow whenever a new ticket is created.

  • Link to original idea for this
  • Using a sum aggregate of this numeric property in the values of the pivot table because number properties are filterable while distinct count (which is available in datasets) is not.

Other troubleshooting tried:

  • Using internal values, like "ticket.dataset_count" inside the other formulas instead of "[dataset count]".

Formula screenshots:

Dataset Count.png7 day count.png30 day count.png90 day count.pngDay Difference.png


Please let me know if any other information is needed for troubleshooting.

Thank you,

Chel

0 Upvotes