Skip to content

Instantly share code, notes, and snippets.

@JimBTek
Last active August 29, 2015 14:18
Show Gist options
  • Save JimBTek/56b54a62098eb6a63751 to your computer and use it in GitHub Desktop.
Save JimBTek/56b54a62098eb6a63751 to your computer and use it in GitHub Desktop.
count365
List<Invoice> invs=[select id, count365__c from Invoice where Invoice_Date__C > 2014-04-02];
if (!invs.isEmpty())
{
Invoice inv=invs[0];
inv.count365__c=TRUE;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment