You're about to create your best presentation ever

Us Map Template For Powerpoint With Editable States

Create your presentation by reusing a template from our community or transition your PowerPoint deck into a visually compelling Prezi presentation.

editable

Transcript: First, a bit about electricity and Canada How much electricity does Canada use? 7th largest consumer of electricity in the world! 508,336,000,000 kilowatt-hours in 2007 104,208,880,000 kg GHGs 31,907,189 Honda Civics Driving for a Year Which countries consume more? What's the difference between Canada and these countries? We have a small population! United States: 307,212,123 people China: 1,338,612,968 people Japan: 127,078,679 people Russia: 140,041,247 people India: 1,156,897,766 people Germany: 82,329,758 people Canada: 33,487,208 people In terms of per capita use where we do rank? 1st - Iceland: 31,328 2nd - Norway: 24,296 3rd - Finland: 17,177 4th - Canada: 16,753 United States: 13,582 China: 2,041 Japan: 8,220 Russia: 6,122 India: 503 Germany: 7,174 Has our electricity consumption per person been going up or down? But wait... ... is using electricity necessarily bad? The Environmental Impact of electricity use depends upon its source - electricity generation Different sources have different environmental impacts Where does Canada's electricity come from? And in Ontario? So what does this mean? Electricity use in each province has a specific environmental impact Not just GHGs - although these are important kg GHG produced = KwH Electricity Used x Emissions Factor Why Conserve in Schools? Total of 1,759,905 kWh 316,783 kg GHGs Audit the Electricity Use of Your School Create a Conservation Plan Implement a Conservation Plan Measure Your Success Why Audit? So we know where to target our conservation efforts! Contact EcoSpark if you need help, advice or if you have any questions: wattwize@ecospark.ca What is ? A Toronto Secondary School's Electricity Consumption, 2008-2009 43 Honda Civics Driving for a Year July 2009 est. CIA World Factbook formerly Citizens' Environment Watch Appliances That's why in Wattwize we: http://datafinder.worldbank.org/electric-power-consumption If my laptop use uses 728 kWh a year: http://www.iea.org/stats/electricitydata.asp?COUNTRY_CODE=CA Audit the Electricity Use of Your School Create a Conservation Plan Implement a Conservation Plan Measure Your Success http://graphs.gapminder.org/world/#$majorMode=chart$is;shi=t;ly=2003;lb=f;il=t;fs=11;al=0;stl=t;st=t;nsl=t;se=t$wst;tts=C$ts;sp=4.50709677419356;ti=2005$zpv;v=0$inc_x;mmid=XCOORDS;iid=ti;by=ind$inc_y;mmid=YCOORDS;iid=pyj6tScZqmEcKxvG4lnIreQ;by=ind$inc_s;uniValue=8.21;iid=phAwcNAVuyj0TAlJeCEzcGQ;by=ind$inc_c;uniValue=255;gid=CATID0;by=grp$map_x;scale=lin;dataMin=1960;dataMax=2005$map_y;scale=lin;dataMin=5.71;dataMax=28213$map_s;sma=50;smi=2$cd;bd=0$inds=i37_t001960,,,, This will produce 677 kg of GHG if I live in Alberta International Energy Agency Who uses more? What's "wrong" with using electricity? Infrastructure ? Total Electricity Consumption, 2007 Ontario Electricity Generation by Source Behaviour 2006 ? www.ieso.org This will produce 131 kg of GHG if I live in Ontario This will produce 4.3 kg of GHG if I live in Quebec Per capita electricity consumption (kWh) ? Anne Campbell What do these mean? 1. United States: 3,824,811 GWh 2. China: 2,676,026 GWh 3. Japan: 1,009,064 GWh 4. Russia: 700,942 GWh 5. India: 566,846 GWh 6. Germany: 527,352 GWh 7. Canada: 508,336 GWh 26,399 Trees Needed to Absorb Emissions Factors ? Where do you think we rank compared to the rest of the world?

Formstack Training

Transcript: Creating a Template Formstack Basics Documents must include merge fields: Begin and end each merge field with curly brackets {} Include $ after the opening bracket. Spaces are not allowed; must use an underscore. Numbers are allowed. Special characters are not allowed. Examples: {$Business.Owner} {$_MeterBW.Meter_Type__c} {$_Equipment.Color_Overage|currency_format:”$” Formstack populates documents with Salesforce data to automate document creation. Commonly used for: Account Reviews Proposals Invoices Type of Documents MS Word Editable PDF Excel Powerpoint Allows for greater flexibility than standard Salesforce reports can provide: Arrays Tables Complex SOQL queries Select Formstack Documents/Mappings from the App Selector Click New Document from the Documents tab Select "I have a document I'd like to use". Select the File and Next Select "Integrate with an external service". Topics Formstack Training December 7th, 2021 Formstack Basics Creating a Template Creating a Mapping SOQL Advanced Documents Document Routes Creating a Mapping Customizable data routes Documents MUST be the same file type Determined by custom fields on the object Changes must be made to both the document and the route Select Formstack Mappings from the app selector. Select New Mapping. Select the Object where the button will appear Think of this object as the source of the data. Available Merge fields {$xxxx} will be visible. Import/Export JSON https://delmarva.lightning.force.com/lightning/n/webm__Webmerge_Documents Select XFS_1_out_Amendment__c, XFS_Escalation_Addendum__c, DDS_terms_and_conditions_Fixed_Price_Mai__c, DDS_termsfixedpricemaintstaples__c, DDS_terms_and_conditions__c, General_T_C_with_No_Charge_Staples__c, DDS_TC_Fixed_Main_Gov__c From TSGADX__Deal__c WHERE Id = ':Id' AND TSGCFG__Quote__r.TSGCFG__Primary__c <> False Test the Document Preview Test/Debug Mode Create Button Create Visualforce Page Create New Button or Link Add button to the page layout Editable PDFs Dynamic Tables Page formatting is locked; does not allow dynamic tables Requires PDF editing software All fields must have a unique name Each field of the table is edited in the "Field Map" tab of the document setup. SOQL Cannot be editable PDFs Format: tablerow Name array SOQL fields Structured Object Query Language Syntactically similar to SQL SELECT fieldList FROM objectType[,...] WHERE [conditionExpression] GROUP BY {fieldGroupByList|ROLLUP (fieldSubtotalGroupByList)|CUBE (fieldSubtotalGroupByList)} ORDER BY [fieldOrderByList {ASC|DESC} [NULLS {FIRST|LAST}] ] LIMIT [numberOfRowsToReturn] Tools: Workbench Developer Sample SOQL Select Name, TSGADX__Model__c, TSGADX__Contract_Exp_Date__c, TSGADX__Lease_Exp_Date__c, TSGADX__Monthly_Lease_Payment__c FROM TSGADX__Equipment__c WHERE TSGADX__Business__c = ':Id' AND RecordType.Name = 'Dealer' AND (TSGADX__Contract_Exp_Date__c <> Null OR TSGADX__Lease_Exp_Date__c <> Null) Example: {tablerow from=$Equipment item=_Equipment} {$_Equipment.Name} {$_Equipment.TSGADX__Model__c} {$_Equipment.Total_Payment__c} {/tablerow}

Tag Global Delivery Centre_old

Transcript: Tag Global Delivery Centre Shared Services Template creation Powerpoint template created matching the colour themes and styles provided in PDF source. Design to brief Hand-drawn chart to be re-created Recreation The source provided in PDF had to be created in Powerpoint as per the brand guidelines and brand colours Recreation The excel data converted into wheel diagram format had to be created in Power Point as per the brand guidelines and brand colours. Design to brief Map creation to brief – output in PowerPoint Design to brief Enhancing a text message through design Design to brief Table creation Brand management Brand led PowerPoint document from a scanned copy Formatting & Beautification The Power Point source was to be formatted as per brand elements. Formatting & Beautification Slide The source was provided in Power Point and was required to be put in template and make it look visually appealing Formatting & Beautification The Power Point source was to be formatted as per brand Flow The source provided in Word was flowed on the brand template ensuring the correct styles are used and consistency is maintained. Flow The source provided in Word was flowed on the brand template ensuring the correct styles are used and consistency is maintained. Editable PDF PDF in editable format. Questions Thank You Design to brief Hand-written Post-its to be re-created to client template standard. Samples Skill-sets Current skill-sets Capability development Template creation Word template created matching the colour themes and styles provided in PDF source. Selection of serviced brands Presentations & Documents Template creation Word template created from the PDF source and brief. The request was to create user-friendly Word template to be used by users who aren’t proficient in Word with changeable as well. Overview Manages MS Office based requirements for our accounts Builds presentations and documents to a design led brief Team of 32 resources 24 x 5 service coverage and one shift over the weekend Key capabilities include: PowerPoint template design and animation Word template design MS Office brand management Visio creation PDF to Word file conversions Editable PDFs

Presentations & Documents Service Credentials

Transcript: Presentations & Documents Service Credentials Tag Global Delivery Centre Design to brief: Samples Brief was provided as hand drawn with notes which was required to be recreated in PowerPoint. Source Output Design to brief: Samples Created a Wheel diagram in PowerPoint using brand guidelines and brand colors from data provided on an excel. Source Output Design to brief: Samples Created a structure chart in PowerPoint from data which was provided on a Scribble note. Source Output Design to brief: Samples Brief was provided as hand drawn with notes which was required to be recreated in PowerPoint. Source Output Design to brief: Samples Information written on post-it, was taken a photo and set to be created as two column in MS Word. Source Output Formatting to brand: Samples Source Output We’d like this document turned into something a lot better looking! It needs to be PwC branded with a focus on clean lines, white space, flat design kind of feel that communicates the information without any fuss. Please make it eye catching and appealing, but also check formatting and that the file is consistent throughout. Formatting to brand: Samples Source Output Created a communication Time table with a source data provided on a printed paper. Formatting to brand: Samples Source Output Formatting of slide and providing visual enhancement as per the brand guidelines. Formatting to brand: Samples Source Output Formatting of slide as per the brand guidelines in PowerPoint. Excel Automation: Samples Source Output ABC is requesting if we have any capabilities to create an automated PPT. This request would require Tag to design a power point deck that could be updated automatically by linking to an excel database or pivot table controlled by the client. Word formatting: Samples Source Output Formatting of as per the brand guidelines in Word. Editable fields: Samples Source Output Data provided was to be created as dynamic editable fields. QA Process Quality framework – Key features Quality process flow chart Presentations & Documents Service Capability PowerPoint template design and animation Word template design MS Office brand management Visio creation PDF to Word file conversions Editable PDFs Design to brief: Samples Formatting of A4 Landscape PowerPoint proposal. Important: Design services will be required for cover page and divider sections, image suggestions for design have been provided. Source Output

Now you can make any subject more engaging and memorable