Created
January 27, 2016 00:35
-
-
Save rapsacnz/8b06de9ae5e96efa0eb8 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<apex:repeat value="{!opportunities}" var="opp"> | |
<Row> | |
<Cell ><Data ss:Type="String">{!opp.Name}</Data> | |
<NamedCell ss:Name="Name_Column"/></Cell> | |
<Cell ><Data ss:Type="String">{!opp.StageName}</Data> | |
<NamedCell ss:Name="Stage_Column"/></Cell> | |
<Cell ><Data ss:Type="Number">{!opp.Amount}</Data> | |
<NamedCell ss:Name="Amount_Column"/></Cell> | |
<Cell ss:StyleID="s75" ss:Formula="=IFERROR(RC[-1]/Total_Amount_Cell,0)"><Data | |
ss:Type="Number"></Data> | |
<NamedCell ss:Name="Percentage_of_Total_Column"/></Cell> | |
</Row> | |
</apex:repeat> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment