• Rahul pandey 53
  • NEWBIE
  • -2 Points
  • Member since 2019

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 0
    Questions
  • 3
    Replies
Hi All !

I am currently generating an excel output with formula in the table: <td>=ROUNDUP(C{!rowNum}*D{!rowNum}/100,0)</td>
The output generated comes in the format:
800000
I actually want the output in the format:
$800,000

How do I achieve this?

Thanks!
Anuj
Hi All,
I created the below formula field which displays the bar code based on the code.
IMAGE("//www.barcodesinc.com/generator/image.php?code="&Promo_Code__c&"&style=325&type=C128B&width=200&height=50&xres=1&font=3",Promo_Code__c)

The Bar code is getting displayed for Internal users. But, the same is not working for Customer Community Users.
I tried with the below formula, but still I'm seeing broken image
IMAGE(LEFT($Api.Partner_Server_URL_260, FIND( '/services', $Api.Partner_Server_URL_260))+"//www.barcodesinc.com/generator/image.php?code="&Promo_Code__c&"&style=325&type=C128B&width=200&height=50&xres=1&font=3",Promo_Code__c)

Could you please help me with this. I need to see the barcodes in Customer Community

Thanks in Advance!

I have a JSON string which represents a List<String>, but I can't figure out how to deserialize it - I don't know what to put for the deserialization type argument.

 

List<String> myList = (List<String>)System.JSON.deserialize(json_string, ????);

 

I've tried putting "List<String>" as the arg, but I get an error about an "unexpected token".