Forum Discussion

jjmauras's avatar
jjmauras
Icon for Advocate II rankAdvocate II
10 years ago
Solved

Show a field that has no value

I'm trying to create a graph that shows the number of Orders created this year compared to the number of Quotes created this year by customer service rep. The first part of my graph is the number of ...
  • itchyeyeballs's avatar
    itchyeyeballs
    10 years ago

    Is your data coming from an exteral database? if so you could modify the view you are using to ensure all reps are returned and use something like

     

    SELECT ISNULL(myColumn, 0 ) FROM myTable

    To ensure no null values