Method Community

 

Search

Page 966 of 2520 (25191 items) « First ... < Previous 964 965 966 967 968 Next > ... Last »
  • Creating a Billed to date field

    Is it possible to creat a field or fields that show the total&nbsp;amounts billed per job, to date without the payments applied and broken down into 0-30 days, 30-60 days 60-90 days etc??
    Posted to Method:Classic General Q&A (Forum) by Afrodite on 03-17-2014
  • Re: missing InvoiceLine record

    Hi Stuart, I have a couple of follow-up questions that should help as I look into this for you. &nbsp;Are you syncing with a QuickBooks Desktop account? &nbsp;Have you been able to recreate this issue again, if not, can you try, using the same discount item, would it happen if you created this in Method? &nbsp;Did you enter any quantity for the ...
    Posted to Method:Classic General Q&A (Forum) by Anonymous on 03-17-2014
  • Re: SQL Override Conditional Formatting

    Your second &quot;fancy&quot; solution did the trick. &nbsp;I think without converting to character was causing the issue. &nbsp;Once it was converted, worked like a charm. Thanks!!! Shawn
    Posted to Method:Classic General Q&A (Forum) by SMcGovern on 03-16-2014
  • Re: SQL Override Conditional Formatting

    if you want to get fancy, and dance around the date conversion a little..... (CASE WHEN [DueDateStart] &lt; GETUTCDATE() THEN &#39;&lt;font color=&quot;red&quot;&gt;&lt;b&gt;&#39; ELSE &#39;&lt;font color=&quot;black&quot;&gt;&lt;b&gt;&#39; &nbsp;END)&nbsp;&nbsp;+ CONVERT(varchar(10), DateAdd(HOUR,-5,viewActivity.DueDateStart), 20)&nbsp;+ ...
    Posted to Method:Classic General Q&A (Forum) by Method_Paul on 03-16-2014
  • Re: SQL Override Conditional Formatting

    In that case you want: (CASE WHEN [DueDateStart] &lt; GETUTCDATE() THEN &#39;&lt;font color=&quot;red&quot;&gt;&lt;b&gt;&#39; ELSE &#39;&lt;font color=&quot;black&quot;&gt;&lt;b&gt;&#39; &nbsp;END)&nbsp;+ viewActivity.DueDateStart + &#39;&lt;/b&gt;&lt;/font&gt;&#39;&nbsp;
    Posted to Method:Classic General Q&A (Forum) by Method_Paul on 03-16-2014
  • Re: SQL Override Conditional Formatting

    Paul, If I move the END to the end of the statement, the case will not display the requested field unless it results in the ELSE portion of the CASE I did try your suggestion but ended&nbsp;up with the same error. I&#39;ll keep playing
    Posted to Method:Classic General Q&A (Forum) by SMcGovern on 03-16-2014
  • Re: SQL Override Conditional Formatting

    Try: (CASE WHEN [DueDateStart] &lt; GETUTCDATE() THEN &#39;&lt;font color=&quot;red&quot;&gt;&lt;b&gt;&#39; ELSE &#39;&lt;font color=&quot;black&quot;&gt;&lt;b&gt;&#39; &nbsp;+ viewActivity.DueDateStart + &#39;&lt;/b&gt;&lt;/font&gt;&#39;&nbsp;END)&nbsp; - I haven&#39;t tried this, just a first glance attempt. - better to use GETUTCDATE() ...
    Posted to Method:Classic General Q&A (Forum) by Method_Paul on 03-16-2014
  • Re: SQL Override Conditional Formatting

    So I have another one that I could use some help on. &nbsp;I want to be able to compare the current time to the requested start date and then color it red if its late. &nbsp;Here was my idea, but it returns &quot;error generating grid&quot; CASE WHEN [DueDateStart] &lt; GETDATE() THEN &#39;&lt;font color=&quot;red&quot;&gt;&lt;b&gt;&#39; ELSE ...
    Posted to Method:Classic General Q&A (Forum) by SMcGovern on 03-16-2014
  • Re: SQL Override Conditional Formatting

    In case anybody is interested, &nbsp;I figured out my own solution: CASE WHEN [ActivityPriority] = &#39;1-Emergency&#39; THEN &#39;&lt;font color=&quot;red&quot;&gt;&lt;b&gt;&#39; WHEN [ActivityPriority] = &#39;2-24 Hour Response&#39; THEN &#39;&lt;font color=&quot;blue&quot;&gt;&lt;b&gt;&#39; ELSE &#39;&lt;font ...
    Posted to Method:Classic General Q&A (Forum) by SMcGovern on 03-15-2014
  • SQL Override Conditional Formatting

    I&#39;m trying to create a new dispatcher&#39;s dashboard and wanted to color code the Work Order grid based on the priority of the activity. &nbsp;I figured I could do something along the lines of: CASE WHEN [viewActivity.ActivityPriority]=&#39;1-Emergency&#39; then &#39;&lt;font color=&quot;red&quot;&gt;&#39; ...
    Posted to Method:Classic General Q&A (Forum) by SMcGovern on 03-15-2014
Page 966 of 2520 (25191 items) « First ... < Previous 964 965 966 967 968 Next > ... Last »