This file contains hidden or 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
| /* Using this directive is as easy as 1, 2, 3. | |
| 1. Grab the Tableau API JavaScript library as well as this module. | |
| a. <script src="path/to/tableau-2.0.0.min.js"></script> | |
| b. <script src="path/to/angular-tableau.js"></script> | |
| 2. Import the module into your app by adding 'angular-tableau' to your dependencies. | |
| 3. Use the directive like this: | |
| <tableau-viz height="'500px'" | |
| url="path/to/tableau-dashboard" | |
| filters={'field1':['item1', 'item2'], 'dateField':{'min':startDate, 'max':endDate}}"> | |
| </tableau-viz> |
This file contains hidden or 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
| //CODE EXAMPLES: Making changes to a web page with jquery | |
| //-------------------------------------------------------------------------------- | |
| //make all list items red | |
| $('li').css('color', 'red'); | |
| //-------------------------------------------------------------------------------- |
This file contains hidden or 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
| Product Cards - Mobile | |
| <div class="celtra-ad-v3"> | |
| <!-- externalCreativeId = raw %ecid! --> | |
| <!-- externalPlacementId = raw %epid! --> | |
| <!-- externalSiteId = raw %esid! --> | |
| <!-- externalLineItemId = raw %eaid! --> | |
| <img src="data:image/png,celtra" style="display: none" onerror=" | |
| (function(img) { | |
| var params = {'expandDirection':'undefined','preferredClickThroughWindow':'new','clickUrl':'%c','clickEvent':'advertiser','externalAdServer':'DBM','tagVersion':'4'}; |
This file contains hidden or 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
| Sub CompleteTrafficImport() | |
| Application.DisplayAlerts = False | |
| Application.ScreenUpdating = False | |
| 'setting up strings and lookups | |
| Dim strPath As String | |
| Dim FileName As String | |
| Dim SelectedFiles As String | |
| Dim TWorkBK As Workbook |
This file contains hidden or 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
| Sub DateValueConvert() | |
| ' | |
| ' DateValueConvert Macro | |
| ' | |
| Application.ScreenUpdating = False | |
| Dim lastrow As Long | |
| lastrow = ActiveSheet.Cells(Rows.Count, "B").End(xlUp).Row | |
| Selection.EntireColumn.Insert , CopyOrigin:=xlFormatFromLeftOrAbove |
This file contains hidden or 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
| Sub PrismaIDfromComments() | |
| Dim strPath As String | |
| Dim FileName As String | |
| Dim CSheetName As String | |
| CSheetName = "Campaign Spreadsheet" | |
| Dim InnovidSheetName As String | |
| InnovidSheetName = "Creative Direction | Media Plan" | |
| Dim SLastrow As Long | |
| SLastrow = ActiveSheet.Cells(Rows.Count, "S").End(xlUp).Row |
This file contains hidden or 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
| Sub PrismaIDfromComments() | |
| Dim strPath As String | |
| Dim FileName As String | |
| Dim CSheetName As String | |
| CSheetName = "Campaign Spreadsheet" | |
| Dim InnovidSheetName As String | |
| InnovidSheetName = "Creative Direction | Media Plan" | |
| strPath = "S:\SMGSHARE\Depts\IP_Shared\Starcom_TAAG\Clients" |
This file contains hidden or 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
| Sub PrismaIDfromComments() | |
| Dim strPath As String | |
| Dim FileName As String | |
| Dim CSheetName As String | |
| CSheetName = "Campaign Spreadsheet" | |
| Dim InnovidSheetName As String | |
| InnovidSheetName = "Creative Direction | Media Plan" | |
| strPath = "S:\SMGSHARE\Depts\IP_Shared\Starcom_TAAG\Clients" |
This file contains hidden or 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
| Dim lastRow As Long | |
| lastRow = Range("C" & Rows.Count).End(xlUp).Row | |
| Range("A7").AutoFill Destination:=Range("A7:A" & lastRow), Type:=xlFillCopy |
This file contains hidden or 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
| Dim lastRow As Long | |
| lastRow = Range("C" & Rows.Count).End(xlUp).Row | |
| Range("A7").AutoFill Destination:=Range("A7:A" & lastRow), Type:=xlFillCopy |