All Collections
FAQ
Insights & Insightboards
How to convert my insight output to a number
How to convert my insight output to a number

How do I specify the desired data type of my insight output

Neli Ivanova avatar
Written by Neli Ivanova
Updated over a week ago

Question

I'm using a spreadsheet or similar at source for a Quantive insight. My insight outputs a text value instead of a number. How do I make it output a number instead?

Answer

You must cast your value to the desired data type in your insight SQL. For example:

SELECT week::int FROM jira_gc_irt WHERE id::int=4

or

SELECT week::numeric FROM jira_gc_irt WHERE id::int=4

In the above examples, the Google spreadsheet I've connected was treating the week field as text, so the values for week come through in Quantive as text. Using the cast operator :: you are specifying that the value of your week field should be output as a number. This is possible because the values in the week column are actually 1,2,3,4... If they were Monday, Tuesday... it would have been impossible to convert that to a number.
โ€‹

Additional information

Did this answer your question?