Closed (fixed)
Project:
Computed Field
Version:
7.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Support request
Assigned:
Unassigned
Reporter:
Created:
22 Feb 2008 at 13:29 UTC
Updated:
28 Apr 2014 at 15:19 UTC
Jump to comment: Most recent
Comments
Comment #1
asak commentedAnswering myself once again:
Use the following Display Format:
$display = number_format($node_field_item['value'], 0, '', ',');
If you'd like to make this into a currency, use:
$display = number_format($node_field_item['value'], 0, '', ',') .' $';
Comment #2
ssoulless commentedSince this is still useful for other people I move this to 7.x
Thanks. =)