Book a Demo

Author Topic: How create charts that are based on TaggedValues-CheckList  (Read 3683 times)

steen.jensen

  • EA User
  • **
  • Posts: 181
  • Karma: +8/-1
    • View Profile
How create charts that are based on TaggedValues-CheckList
« on: September 11, 2020, 01:06:21 am »
I have used a SQL-script for my Charts based from TaggedValues.
But I have a few TaggedValues based on CheckList type.
With same script I only got 0/o if each checkbox is marked ie 0,0,1,0

How to get each checkbox value with its  Name and Value in SQL-script that is working with Charts

Sql-script för Charts:

SELECT tv.Value AS Series, tv.Property as GroupName
FROM t_objectproperties tv
INNER JOIN t_object o ON o.Object_ID = tv.Object_ID
WHERE tv.Property in ('TaggedValueName')

qwerty

  • EA Guru
  • *****
  • Posts: 13584
  • Karma: +396/-301
  • I'm no guru at all
    • View Profile
Re: How create charts that are based on TaggedValues-CheckList
« Reply #1 on: September 11, 2020, 02:10:23 am »
If I'm not wrong this info is in the memo field (t_objectproperties.notes) and you need to parse that.

q.