• aqeel ahmad
  • NEWBIE
  • 10 Points
  • Member since 2016


  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 4
    Questions
  • 3
    Replies
 if(field == 'StageName')
        soql = 'Select' + ' '+field +' '+',Amount from Opportunity where ' + field +Operator+'\''+Val+'\'';
 if(field == 'Amount')
        soql += val;
        runQuery();
       since amount is integer field and stage is string type so how to manage the query?