├── README.md ├── IaaS └── AzVmPricing │ ├── Install-Modules.ps1 │ ├── azVMs.pbix │ ├── SQL Licensing.xlsx │ └── Download-AzVmPricing.ps1 ├── AzFunctions ├── Minimal │ └── C# │ │ ├── .vs │ │ ├── ExtractApp │ │ │ ├── FileContentIndex │ │ │ │ ├── read.lock │ │ │ │ ├── 528830b3-7b47-4811-a194-a6bc36bcf3a6.vsidx │ │ │ │ ├── 73de7e46-7966-4da1-92e1-b85a85c85f38.vsidx │ │ │ │ └── b1ac9f6f-af7c-42b1-a1fe-db55918a3419.vsidx │ │ │ ├── v17 │ │ │ │ ├── .suo │ │ │ │ ├── .futdcache.v1 │ │ │ │ └── TestStore │ │ │ │ │ └── 0 │ │ │ │ │ ├── 000.testlog │ │ │ │ │ └── testlog.manifest │ │ │ └── DesignTimeBuild │ │ │ │ └── .dtbcache.v2 │ │ └── ProjectEvaluation │ │ │ ├── extractapp.metadata.v2 │ │ │ └── extractapp.projects.v2 │ │ ├── TestProject1 │ │ ├── Usings.cs │ │ ├── TestProject1.csproj │ │ └── UnitTest1.cs │ │ ├── ExtractApp │ │ ├── Properties │ │ │ ├── launchSettings.json │ │ │ ├── serviceDependencies.json │ │ │ ├── serviceDependencies.local.json │ │ │ ├── PublishProfiles │ │ │ │ └── AzExtractApp - Zip Deploy.pubxml │ │ │ └── ServiceDependencies │ │ │ │ └── AzExtractApp - Zip Deploy │ │ │ │ └── profile.arm.json │ │ ├── host.json │ │ ├── ExtractApp.sln.DotSettings │ │ ├── ExtractApp.csproj │ │ ├── HelloWorld.cs │ │ ├── .gitignore │ │ └── ExtractCSV.cs │ │ ├── ExtractApp.sln.DotSettings │ │ ├── CreateTable.sql │ │ └── ExtractApp.sln ├── ADF.PNG ├── UnitTest.PNG ├── Performance.PNG └── README.md ├── PBI └── CRM │ ├── DAX │ ├── 2. Rank.dax.queryBuilder │ ├── q. LENE.dax.queryBuilder │ ├── 2. Rank.dax │ ├── q. LENE.dax │ └── q. LENE.dax.serverTimings │ ├── Demo │ ├── Hubspot.bak │ ├── test-Pipeline.csv │ ├── test-companies.csv │ └── test-deals.csv │ ├── Sales Orders.pbix │ ├── CRM-Hubspot-v1.pbix │ ├── CRM-Hubspot-v2.pbix │ └── Modellign Workflow and CRM.pptx └── .gitignore /README.md: -------------------------------------------------------------------------------- 1 | # Demos 2 | Prodata Demo Scripts 3 | -------------------------------------------------------------------------------- /IaaS/AzVmPricing/Install-Modules.ps1: -------------------------------------------------------------------------------- 1 | Install-Module Az -------------------------------------------------------------------------------- /AzFunctions/Minimal/C#/.vs/ExtractApp/FileContentIndex/read.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /PBI/CRM/DAX/2. Rank.dax.queryBuilder: -------------------------------------------------------------------------------- 1 | {"Columns":[],"Filters":{"Items":[]}} -------------------------------------------------------------------------------- /PBI/CRM/DAX/q. LENE.dax.queryBuilder: -------------------------------------------------------------------------------- 1 | {"Columns":[],"Filters":{"Items":[]}} -------------------------------------------------------------------------------- /AzFunctions/ADF.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdataSQL/Demos/main/AzFunctions/ADF.PNG -------------------------------------------------------------------------------- /AzFunctions/Minimal/C#/TestProject1/Usings.cs: -------------------------------------------------------------------------------- 1 | global using Microsoft.VisualStudio.TestTools.UnitTesting; -------------------------------------------------------------------------------- /AzFunctions/UnitTest.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdataSQL/Demos/main/AzFunctions/UnitTest.PNG -------------------------------------------------------------------------------- /PBI/CRM/Demo/Hubspot.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdataSQL/Demos/main/PBI/CRM/Demo/Hubspot.bak -------------------------------------------------------------------------------- /PBI/CRM/Sales Orders.pbix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdataSQL/Demos/main/PBI/CRM/Sales Orders.pbix -------------------------------------------------------------------------------- /AzFunctions/Performance.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdataSQL/Demos/main/AzFunctions/Performance.PNG -------------------------------------------------------------------------------- /IaaS/AzVmPricing/azVMs.pbix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdataSQL/Demos/main/IaaS/AzVmPricing/azVMs.pbix -------------------------------------------------------------------------------- /PBI/CRM/CRM-Hubspot-v1.pbix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdataSQL/Demos/main/PBI/CRM/CRM-Hubspot-v1.pbix -------------------------------------------------------------------------------- /PBI/CRM/CRM-Hubspot-v2.pbix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdataSQL/Demos/main/PBI/CRM/CRM-Hubspot-v2.pbix -------------------------------------------------------------------------------- /IaaS/AzVmPricing/SQL Licensing.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdataSQL/Demos/main/IaaS/AzVmPricing/SQL Licensing.xlsx -------------------------------------------------------------------------------- /PBI/CRM/Modellign Workflow and CRM.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdataSQL/Demos/main/PBI/CRM/Modellign Workflow and CRM.pptx -------------------------------------------------------------------------------- /AzFunctions/Minimal/C#/.vs/ExtractApp/v17/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdataSQL/Demos/main/AzFunctions/Minimal/C#/.vs/ExtractApp/v17/.suo -------------------------------------------------------------------------------- /AzFunctions/Minimal/C#/.vs/ExtractApp/v17/.futdcache.v1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdataSQL/Demos/main/AzFunctions/Minimal/C#/.vs/ExtractApp/v17/.futdcache.v1 -------------------------------------------------------------------------------- /AzFunctions/Minimal/C#/.vs/ExtractApp/v17/TestStore/0/000.testlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdataSQL/Demos/main/AzFunctions/Minimal/C#/.vs/ExtractApp/v17/TestStore/0/000.testlog -------------------------------------------------------------------------------- /AzFunctions/Minimal/C#/.vs/ExtractApp/DesignTimeBuild/.dtbcache.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdataSQL/Demos/main/AzFunctions/Minimal/C#/.vs/ExtractApp/DesignTimeBuild/.dtbcache.v2 -------------------------------------------------------------------------------- /AzFunctions/Minimal/C#/.vs/ProjectEvaluation/extractapp.metadata.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdataSQL/Demos/main/AzFunctions/Minimal/C#/.vs/ProjectEvaluation/extractapp.metadata.v2 -------------------------------------------------------------------------------- /AzFunctions/Minimal/C#/.vs/ProjectEvaluation/extractapp.projects.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdataSQL/Demos/main/AzFunctions/Minimal/C#/.vs/ProjectEvaluation/extractapp.projects.v2 -------------------------------------------------------------------------------- /AzFunctions/Minimal/C#/.vs/ExtractApp/v17/TestStore/0/testlog.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdataSQL/Demos/main/AzFunctions/Minimal/C#/.vs/ExtractApp/v17/TestStore/0/testlog.manifest -------------------------------------------------------------------------------- /AzFunctions/Minimal/C#/.vs/ExtractApp/FileContentIndex/528830b3-7b47-4811-a194-a6bc36bcf3a6.vsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdataSQL/Demos/main/AzFunctions/Minimal/C#/.vs/ExtractApp/FileContentIndex/528830b3-7b47-4811-a194-a6bc36bcf3a6.vsidx -------------------------------------------------------------------------------- /AzFunctions/Minimal/C#/.vs/ExtractApp/FileContentIndex/73de7e46-7966-4da1-92e1-b85a85c85f38.vsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdataSQL/Demos/main/AzFunctions/Minimal/C#/.vs/ExtractApp/FileContentIndex/73de7e46-7966-4da1-92e1-b85a85c85f38.vsidx -------------------------------------------------------------------------------- /AzFunctions/Minimal/C#/.vs/ExtractApp/FileContentIndex/b1ac9f6f-af7c-42b1-a1fe-db55918a3419.vsidx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProdataSQL/Demos/main/AzFunctions/Minimal/C#/.vs/ExtractApp/FileContentIndex/b1ac9f6f-af7c-42b1-a1fe-db55918a3419.vsidx -------------------------------------------------------------------------------- /AzFunctions/Minimal/C#/ExtractApp/Properties/launchSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "profiles": { 3 | "ExtractApp": { 4 | "commandName": "Project", 5 | "commandLineArgs": "--port 7227", 6 | "launchBrowser": false 7 | } 8 | } 9 | } -------------------------------------------------------------------------------- /AzFunctions/Minimal/C#/ExtractApp/Properties/serviceDependencies.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "appInsights1": { 4 | "type": "appInsights" 5 | }, 6 | "storage1": { 7 | "type": "storage", 8 | "connectionId": "AzureWebJobsStorage" 9 | } 10 | } 11 | } -------------------------------------------------------------------------------- /AzFunctions/Minimal/C#/ExtractApp/host.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.0", 3 | "logging": { 4 | "applicationInsights": { 5 | "samplingSettings": { 6 | "isEnabled": true, 7 | "excludedTypes": "Request" 8 | } 9 | } 10 | } 11 | } -------------------------------------------------------------------------------- /AzFunctions/Minimal/C#/ExtractApp/Properties/serviceDependencies.local.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "appInsights1": { 4 | "type": "appInsights.sdk" 5 | }, 6 | "storage1": { 7 | "type": "storage.emulator", 8 | "connectionId": "AzureWebJobsStorage" 9 | } 10 | } 11 | } -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | ################################################################################ 2 | # This .gitignore file was automatically created by Microsoft(R) Visual Studio. 3 | ################################################################################ 4 | 5 | /AzFunctions/Minimal/C#/TestProject1/bin 6 | /AzFunctions/Minimal/C#/TestProject1/obj 7 | -------------------------------------------------------------------------------- /PBI/CRM/Demo/test-Pipeline.csv: -------------------------------------------------------------------------------- 1 | Pipeline,Deal_Stage,Probability,StageNo 2 | Sales Pipeline,Appointment scheduled,.30,2 3 | Sales Pipeline,Closed lost,.00,9 4 | Sales Pipeline,Closed won,1.00,9 5 | Sales Pipeline,Contract sent,.80,5 6 | Sales Pipeline,Decision maker bought-In,.70,4 7 | Sales Pipeline,Presentation scheduled,.40,3 8 | Sales Pipeline,Qualified to buy,.20,1 9 | -------------------------------------------------------------------------------- /AzFunctions/Minimal/C#/ExtractApp.sln.DotSettings: -------------------------------------------------------------------------------- 1 | 2 | True -------------------------------------------------------------------------------- /AzFunctions/Minimal/C#/ExtractApp/ExtractApp.sln.DotSettings: -------------------------------------------------------------------------------- 1 | 2 | True 3 | True 4 | True 5 | True -------------------------------------------------------------------------------- /AzFunctions/Minimal/C#/TestProject1/TestProject1.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | net6.0 5 | enable 6 | enable 7 | 8 | false 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /IaaS/AzVmPricing/Download-AzVmPricing.ps1: -------------------------------------------------------------------------------- 1 | $region = "northeurope" 2 | $Path= "C:\temp\AzComputeResourceSku.csv" 3 | (Get-AzComputeResourceSku -Location "northeurope" ) | where {$_.ResourceType -eq "virtualMachines" } | Select-Object @{Name='vmName'; Expression={ $_.Name } ; } -ExpandProperty Capabilities | Export-Csv -Path $Path 4 | 5 | 6 | 7 | $Path= "C:\temp\AzCost.csv" 8 | if (Test-Path $Path) { 9 | Remove-Item $Path 10 | } 11 | $Uri='https://prices.azure.com/api/retail/prices?currencyCode=''EUR''&$filter=serviceName eq ''Virtual Machines'' and priceType eq ''Consumption'' and armRegionName eq ''northeurope''' 12 | Do { 13 | $Uri 14 | $page=Invoke-RestMethod -Uri $Uri 15 | $Count=$page.Count 16 | $Uri=$page.NextPageLink 17 | $page.Items | Select-Object CurrencyCode, armSkuName , productId, skuId, location, retailPrice, type , unitOfMeasure | Export-Csv -Path $Path -Append 18 | 19 | } while ($Uri) -------------------------------------------------------------------------------- /AzFunctions/Minimal/C#/ExtractApp/ExtractApp.csproj: -------------------------------------------------------------------------------- 1 | 2 | 3 | net6.0 4 | v4 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | PreserveNewest 15 | 16 | 17 | PreserveNewest 18 | Never 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /AzFunctions/Minimal/C#/ExtractApp/Properties/PublishProfiles/AzExtractApp - Zip Deploy.pubxml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 7 | ZipDeploy 8 | AzureWebSite 9 | Release 10 | Any CPU 11 | https://azextractapp.azurewebsites.net 12 | false 13 | /subscriptions/c9d4dcc8-20cb-47b6-8c52-a583abab20c3/resourcegroups/rg-MinimalFunctionApp/providers/Microsoft.Web/sites/AzExtractApp 14 | $AzExtractApp 15 | <_SavePWD>true 16 | true 17 | https://azextractapp.scm.azurewebsites.net/ 18 | 19 | -------------------------------------------------------------------------------- /AzFunctions/Minimal/C#/CreateTable.sql: -------------------------------------------------------------------------------- 1 | /****** Object: Table [stg].[IMDB] Script Date: 02/04/2023 13:44:06 ******/ 2 | IF EXISTS (SELECT * FROM sys.objects WHERE object_id = OBJECT_ID(N'[stg].[IMDB]') AND type in (N'U')) 3 | DROP TABLE [stg].[IMDB] 4 | GO 5 | 6 | /****** Object: Table [stg].[IMDB] Script Date: 02/04/2023 13:44:06 ******/ 7 | SET ANSI_NULLS ON 8 | GO 9 | 10 | SET QUOTED_IDENTIFIER ON 11 | GO 12 | 13 | CREATE TABLE [stg].[IMDB] 14 | ( 15 | [movie title] [varchar](4000) NULL, 16 | [Run Time] [varchar](4000) NULL, 17 | [Rating] [varchar](4000) NULL, 18 | [User Rating] [varchar](4000) NULL, 19 | [Generes] [varchar](4000) NULL, 20 | [Overview] [varchar](4000) NULL, 21 | [Plot Kyeword] [varchar](4000) NULL, 22 | [Director] [varchar](4000) NULL, 23 | [Top 5 Casts] [varchar](4000) NULL, 24 | [Writer] [varchar](4000) NULL, 25 | [year] [varchar](4000) NULL, 26 | [path] [varchar](4000) NULL 27 | ) 28 | WITH 29 | ( 30 | DISTRIBUTION = ROUND_ROBIN, 31 | HEAP 32 | ) 33 | GO 34 | 35 | 36 | -------------------------------------------------------------------------------- /AzFunctions/Minimal/C#/ExtractApp/HelloWorld.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.IO; 3 | using System.Threading.Tasks; 4 | using Microsoft.AspNetCore.Mvc; 5 | using Microsoft.Azure.WebJobs; 6 | using Microsoft.Azure.WebJobs.Extensions.Http; 7 | using Microsoft.AspNetCore.Http; 8 | using Microsoft.Extensions.Logging; 9 | using Newtonsoft.Json; 10 | 11 | namespace ExtractApp 12 | { 13 | public static class HelloWorld 14 | { 15 | [FunctionName("HelloWorld")] 16 | public static async Task Run( 17 | [HttpTrigger(AuthorizationLevel.Function, "get", "post", Route = null)] HttpRequest req, 18 | ILogger log) 19 | { 20 | log.LogInformation("C# HTTP trigger function processed a request."); 21 | 22 | string name = req.Query["name"]; 23 | 24 | string requestBody = await new StreamReader(req.Body).ReadToEndAsync(); 25 | dynamic data = JsonConvert.DeserializeObject(requestBody); 26 | name = name ?? data?.name; 27 | 28 | string responseMessage = string.IsNullOrEmpty(name) 29 | ? "This HTTP triggered function executed successfully. Pass a name in the query string or in the request body for a personalized response." 30 | : $"Hello, {name}. This HTTP triggered function executed successfully."; 31 | 32 | return new OkObjectResult(responseMessage); 33 | } 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /PBI/CRM/DAX/2. Rank.dax: -------------------------------------------------------------------------------- 1 | // DAX Query 2 | DEFINE 3 | VAR __DS0Core = 4 | SUMMARIZECOLUMNS( 5 | 'Date'[Month], 6 | 'Date'[MonthNo], 7 | ROLLUPADDISSUBTOTAL( 8 | ROLLUPGROUP('Pipeline'[Deal_Stage], 'Pipeline'[StageNo]), "IsGrandTotalColumnTotal" 9 | ), 10 | "LENE_Amount4", 'Deals'[LENE Amount4] 11 | ) 12 | 13 | VAR __DS0PrimaryWindowed = 14 | TOPN( 15 | 101, 16 | SUMMARIZE(__DS0Core, 'Date'[Month], 'Date'[MonthNo]), 17 | 'Date'[MonthNo], 18 | 1, 19 | 'Date'[Month], 20 | 1 21 | ) 22 | 23 | VAR __DS0SecondaryBase = 24 | SUMMARIZE(__DS0Core, 'Pipeline'[Deal_Stage], 'Pipeline'[StageNo], [IsGrandTotalColumnTotal]) 25 | 26 | VAR __DS0Secondary = 27 | TOPN( 28 | 102, 29 | __DS0SecondaryBase, 30 | [IsGrandTotalColumnTotal], 31 | 1, 32 | 'Pipeline'[StageNo], 33 | 1, 34 | 'Pipeline'[Deal_Stage], 35 | 1 36 | ) 37 | 38 | VAR __DS0BodyLimited = 39 | NATURALLEFTOUTERJOIN( 40 | __DS0PrimaryWindowed, 41 | SUBSTITUTEWITHINDEX( 42 | __DS0Core, 43 | "ColumnIndex", 44 | __DS0Secondary, 45 | [IsGrandTotalColumnTotal], 46 | ASC, 47 | 'Pipeline'[StageNo], 48 | ASC, 49 | 'Pipeline'[Deal_Stage], 50 | ASC 51 | ) 52 | ) 53 | 54 | EVALUATE 55 | __DS0Secondary 56 | 57 | ORDER BY 58 | [IsGrandTotalColumnTotal], 'Pipeline'[StageNo], 'Pipeline'[Deal_Stage] 59 | 60 | EVALUATE 61 | __DS0BodyLimited 62 | 63 | ORDER BY 64 | 'Date'[MonthNo], 'Date'[Month], [ColumnIndex] 65 | -------------------------------------------------------------------------------- /PBI/CRM/DAX/q. LENE.dax: -------------------------------------------------------------------------------- 1 | // DAX Query 2 | DEFINE 3 | VAR __DS0Core = 4 | SUMMARIZECOLUMNS( 5 | 'Date'[Month], 6 | 'Date'[MonthNo], 7 | ROLLUPADDISSUBTOTAL( 8 | ROLLUPGROUP('Pipeline'[Deal_Stage], 'Pipeline'[StageNo]), "IsGrandTotalColumnTotal" 9 | ), 10 | "LENE_Amount3", 'Deals'[LENE Amount3] 11 | ) 12 | 13 | VAR __DS0PrimaryWindowed = 14 | TOPN( 15 | 101, 16 | SUMMARIZE(__DS0Core, 'Date'[Month], 'Date'[MonthNo]), 17 | 'Date'[MonthNo], 18 | 1, 19 | 'Date'[Month], 20 | 1 21 | ) 22 | 23 | VAR __DS0SecondaryBase = 24 | SUMMARIZE(__DS0Core, 'Pipeline'[Deal_Stage], 'Pipeline'[StageNo], [IsGrandTotalColumnTotal]) 25 | 26 | VAR __DS0Secondary = 27 | TOPN( 28 | 102, 29 | __DS0SecondaryBase, 30 | [IsGrandTotalColumnTotal], 31 | 1, 32 | 'Pipeline'[StageNo], 33 | 1, 34 | 'Pipeline'[Deal_Stage], 35 | 1 36 | ) 37 | 38 | VAR __DS0BodyLimited = 39 | NATURALLEFTOUTERJOIN( 40 | __DS0PrimaryWindowed, 41 | SUBSTITUTEWITHINDEX( 42 | __DS0Core, 43 | "ColumnIndex", 44 | __DS0Secondary, 45 | [IsGrandTotalColumnTotal], 46 | ASC, 47 | 'Pipeline'[StageNo], 48 | ASC, 49 | 'Pipeline'[Deal_Stage], 50 | ASC 51 | ) 52 | ) 53 | 54 | EVALUATE 55 | __DS0Secondary 56 | 57 | ORDER BY 58 | [IsGrandTotalColumnTotal], 'Pipeline'[StageNo], 'Pipeline'[Deal_Stage] 59 | 60 | EVALUATE 61 | __DS0BodyLimited 62 | 63 | ORDER BY 64 | 'Date'[MonthNo], 'Date'[Month], [ColumnIndex] 65 | -------------------------------------------------------------------------------- /AzFunctions/Minimal/C#/ExtractApp.sln: -------------------------------------------------------------------------------- 1 | 2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 17 4 | VisualStudioVersion = 17.2.32616.157 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ExtractApp", "ExtractApp\ExtractApp.csproj", "{54EA06E0-B2A5-44EC-8371-512BD33C3CB7}" 7 | EndProject 8 | Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "TestProject1", "TestProject1\TestProject1.csproj", "{82FC1837-F9BD-42B2-B2A8-A309C433A18A}" 9 | EndProject 10 | Global 11 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 12 | Debug|Any CPU = Debug|Any CPU 13 | Release|Any CPU = Release|Any CPU 14 | EndGlobalSection 15 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 16 | {54EA06E0-B2A5-44EC-8371-512BD33C3CB7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 17 | {54EA06E0-B2A5-44EC-8371-512BD33C3CB7}.Debug|Any CPU.Build.0 = Debug|Any CPU 18 | {54EA06E0-B2A5-44EC-8371-512BD33C3CB7}.Release|Any CPU.ActiveCfg = Release|Any CPU 19 | {54EA06E0-B2A5-44EC-8371-512BD33C3CB7}.Release|Any CPU.Build.0 = Release|Any CPU 20 | {82FC1837-F9BD-42B2-B2A8-A309C433A18A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 21 | {82FC1837-F9BD-42B2-B2A8-A309C433A18A}.Debug|Any CPU.Build.0 = Debug|Any CPU 22 | {82FC1837-F9BD-42B2-B2A8-A309C433A18A}.Release|Any CPU.ActiveCfg = Release|Any CPU 23 | {82FC1837-F9BD-42B2-B2A8-A309C433A18A}.Release|Any CPU.Build.0 = Release|Any CPU 24 | EndGlobalSection 25 | GlobalSection(SolutionProperties) = preSolution 26 | HideSolutionNode = FALSE 27 | EndGlobalSection 28 | GlobalSection(ExtensibilityGlobals) = postSolution 29 | SolutionGuid = {BF3A7949-187E-410E-BBDC-48346577C25F} 30 | EndGlobalSection 31 | EndGlobal 32 | -------------------------------------------------------------------------------- /AzFunctions/Minimal/C#/TestProject1/UnitTest1.cs: -------------------------------------------------------------------------------- 1 | using System.Linq.Expressions; 2 | using System.Text; 3 | using ExtractApp; 4 | using Microsoft.AspNetCore.Http; 5 | using Microsoft.AspNetCore.Http.Internal; 6 | using Microsoft.AspNetCore.Mvc; 7 | using Microsoft.Extensions.Logging.Abstractions; 8 | using Microsoft.Extensions.Primitives; 9 | using Microsoft.VisualStudio.TestPlatform.CrossPlatEngine.Discovery; 10 | using Newtonsoft.Json; 11 | 12 | namespace TestProject1 13 | { 14 | [TestClass] 15 | public class UnitTest1 16 | { 17 | 18 | 19 | [TestInitialize] 20 | public void Initialize() 21 | { 22 | 23 | } 24 | 25 | [TestMethod] 26 | [TestCategory("CSV")] 27 | [TestCategory("azFunctions")] 28 | [Description("Extract a CSV to SQL ASDL API => SqlBilkCopy")] 29 | public async Task ExtractCsv() 30 | { 31 | var bodyDictionary= new Dictionary() 32 | { 33 | {"storageAccount", "bobawdatalakedev"}, 34 | {"container", "raw"}, 35 | {"directory", ""}, 36 | {"fileName", "25k IMDb movie Dataset.csv"}, 37 | {"sqlServer", "swat-dev.database.windows.net"}, 38 | {"sqlDatabase", "SwatDW"}, 39 | {"sqlTable", "stg.IMDB"} 40 | }; 41 | 42 | 43 | 44 | var json = JsonConvert.SerializeObject(bodyDictionary); 45 | 46 | var body = new MemoryStream(Encoding.ASCII.GetBytes(json)); 47 | 48 | var req = new DefaultHttpRequest(new DefaultHttpContext()) 49 | { 50 | Body = body 51 | 52 | }; 53 | 54 | var logger = NullLoggerFactory.Instance.CreateLogger("Null Logger"); 55 | var response = await ExtractCSV.Run(req, logger); 56 | var result = (OkObjectResult)response; 57 | 58 | Console.WriteLine(result.Value ); 59 | 60 | } 61 | } 62 | } -------------------------------------------------------------------------------- /AzFunctions/README.md: -------------------------------------------------------------------------------- 1 | # Sample C# Azure Function for Datalake and SQL 2 | 3 | Welcome to the sample c# Azure functions. This contains two sample projects written in Visual Studio 2019: 4 | 5 | - ExtractApp.csproj. A sample Azure function which reads a CSV using the DataLakeClient API and writes to a SQL Server using SqlBulkCopy API 6 | - TestProject1.csproj. A sample C# unit test project that shows how make a unit test for an azure function using a mock HTTP request object. 7 | 8 | ## Key concepts to demo 9 | 10 | - A template for writing c# Azure function that use Datalakes and SQL 11 | - Example of using the latest Azure.Identity for both Managed Identity when run from Azure and Visual Studio Azure Identity when run from Visual Studio. 12 | - Example use of the newer DataLakeServiceClient instead of the more generic BlobServiceClient. 13 | - Example use of SqlBulkCopy API to write a Dataset from Dot.Ney to SQL with a Bulk API. 14 | - Sample Dot.Net Unit Test project showing how to write unit tests to develop and test functions locally so you dont have to mess with debugging as much in Azure Portal. 15 | - Use of a local.settings.json file and Envioronment variables to have different settings in VS Studio versus Azure. Specificaaly the ExcludeManagedIdentityCredential boolean flag. 16 | 17 | ## Setup and Permissions 18 | 19 | To get this example to work you will need a few things: 20 | 21 | 1. An ASDL Storage Account with a container 22 | 2. Upload sampel CSV from https://www.kaggle.com/datasets/utsh0dey/25k-movie-dataset 23 | 3. A SQL DB or Syanpse SQL Pool with table created as per [CreateTable.sql](Minimal/C#/CreateTable.sql) 24 | 4. Azure function published from source code. [ExtractApp.sln](Minimal/C%23/ExtractApp.sln) 25 | 5. Managed Identity Setup on AzFunction and ADF as per [this blog](https://prodata.ie/2022/06/16/enabling-managed-identity-authentication-on-azure-functions-in-data-factory/) 26 | 6. Grant the Function App Identity permissions on the SqlServer. [this article](https://learn.microsoft.com/en-us/azure/azure-functions/functions-identity-access-azure-sql-with-managed-identity) 27 | 28 | This can be cumbersome, but good news its once off setup. 29 | 30 | ## Why use an Azure Function 31 | 32 | Theres a few scenarios where Azure Functions can be useful with data engineering, even if you are using ADF: 33 | 34 | - When the source file needs some high code solution to parse nasty files. 35 | - C# does allow for more streamlined file procesing. At the extepse of development time. This can lead to better performance. More than 2x in this case of a 12MB file. 36 | - When the low code ADF envionment is not flexible enough. 37 | - Azure functions can be considerably cheaper than ADF for copying files if you are not using a self Hosted Integration Run Time. 38 | 39 | ## Performance Testing ADF Copy v c# Azure function 40 | 41 | As a performance test we took a sample 12 MB CSV File which you can download from kaggle here 42 | https://www.kaggle.com/datasets/utsh0dey/25k-movie-dataset 43 | 44 | We then read the file and loaded it into SQL using two scenarios 45 | - The Standard Copy Activity using the SqlPool COPY option. 46 | - This sample c# azure function. 47 | 48 | Average run times are show below. Potentially the c# azure funciton was more than 2x faster then the ADF Copy Activity. 49 | ![Performance Comparison](Performance.PNG) 50 | 51 | Notes: 52 | 53 | 1. We were using the most basic tier of azure functions on a Linux host. The "consumption" plan is about 1 core and 1.5GB ram so really limited in resources. 54 | 2. We read the file into a DataTable. Its a bit more complex but potentially faster and more scalable to use a streaming interface like iDataReader. 55 | 56 | ## Testing c# Azure Function from VS Unit Test and from ADF 57 | 58 | We can invoke the AzFunction either locally from VS Unit Test or once pulished from ADF. Examples of these two experiences are below 59 | 60 | c# Unit Test Running using Test Explorer 61 | ![C# Unit Test ](UnitTest.PNG) 62 | 63 | ADF Pipeline runing using Azure Function Activity 64 | ![ADF Unit Test ](ADF.PNG) 65 | 66 | ## Going from this sample to Production Quality 67 | 68 | While the API calls are similar, there are some things we do slighty differently in a commerical/production solution. We didn't show them here to keep it as a simple demo: 69 | 70 | - We would not place the code inside the azure function. Better to put the logic into a dedicated Class solution. 71 | - We write unit tests based on the seperate logic classes rather than try and mock up azure function calls. This lets us develop and test code without worrying about any pecularities of azure functions. 72 | - We do not use the APIs like Azure.Identity, or DataLakeClient within the function or logic class. Instead we create our own library which wraps the APIs for easier re-use. 73 | - This example using a DataTable, sometimes we may develop data processing using a more streaming method such as and IDataReader interface, or chunking the DataTable into 1MB chunks. 74 | - Note that we use the full Visual Studio and not Visual Code for c# projects. This is mainly due to use of tools like VS Unit Test and Jet Brains to help development. We tend to use VS code more for scripting languages like Powershell and Python. But many authors do use VS Code for c#. 75 | 76 | ## References 77 | 78 | https://prodata.ie/2022/06/16/enabling-managed-identity-authentication-on-azure-functions-in-data-factory/ 79 | https://www.mssqltips.com/sqlservertip/7532/retrieve-file-azure-blob-storage-azure-function/ 80 | https://learn.microsoft.com/en-us/azure/azure-functions/functions-identity-access-azure-sql-with-managed-identity 81 | -------------------------------------------------------------------------------- /AzFunctions/Minimal/C#/ExtractApp/.gitignore: -------------------------------------------------------------------------------- 1 | ## Ignore Visual Studio temporary files, build results, and 2 | ## files generated by popular Visual Studio add-ons. 3 | 4 | # Azure Functions localsettings file 5 | local.settings.json 6 | 7 | # User-specific files 8 | *.suo 9 | *.user 10 | *.userosscache 11 | *.sln.docstates 12 | 13 | # User-specific files (MonoDevelop/Xamarin Studio) 14 | *.userprefs 15 | 16 | # Build results 17 | [Dd]ebug/ 18 | [Dd]ebugPublic/ 19 | [Rr]elease/ 20 | [Rr]eleases/ 21 | x64/ 22 | x86/ 23 | bld/ 24 | [Bb]in/ 25 | [Oo]bj/ 26 | [Ll]og/ 27 | 28 | # Visual Studio 2015 cache/options directory 29 | .vs/ 30 | # Uncomment if you have tasks that create the project's static files in wwwroot 31 | #wwwroot/ 32 | 33 | # MSTest test Results 34 | [Tt]est[Rr]esult*/ 35 | [Bb]uild[Ll]og.* 36 | 37 | # NUNIT 38 | *.VisualState.xml 39 | TestResult.xml 40 | 41 | # Build Results of an ATL Project 42 | [Dd]ebugPS/ 43 | [Rr]eleasePS/ 44 | dlldata.c 45 | 46 | # DNX 47 | project.lock.json 48 | project.fragment.lock.json 49 | artifacts/ 50 | 51 | *_i.c 52 | *_p.c 53 | *_i.h 54 | *.ilk 55 | *.meta 56 | *.obj 57 | *.pch 58 | *.pdb 59 | *.pgc 60 | *.pgd 61 | *.rsp 62 | *.sbr 63 | *.tlb 64 | *.tli 65 | *.tlh 66 | *.tmp 67 | *.tmp_proj 68 | *.log 69 | *.vspscc 70 | *.vssscc 71 | .builds 72 | *.pidb 73 | *.svclog 74 | *.scc 75 | 76 | # Chutzpah Test files 77 | _Chutzpah* 78 | 79 | # Visual C++ cache files 80 | ipch/ 81 | *.aps 82 | *.ncb 83 | *.opendb 84 | *.opensdf 85 | *.sdf 86 | *.cachefile 87 | *.VC.db 88 | *.VC.VC.opendb 89 | 90 | # Visual Studio profiler 91 | *.psess 92 | *.vsp 93 | *.vspx 94 | *.sap 95 | 96 | # TFS 2012 Local Workspace 97 | $tf/ 98 | 99 | # Guidance Automation Toolkit 100 | *.gpState 101 | 102 | # ReSharper is a .NET coding add-in 103 | _ReSharper*/ 104 | *.[Rr]e[Ss]harper 105 | *.DotSettings.user 106 | 107 | # JustCode is a .NET coding add-in 108 | .JustCode 109 | 110 | # TeamCity is a build add-in 111 | _TeamCity* 112 | 113 | # DotCover is a Code Coverage Tool 114 | *.dotCover 115 | 116 | # NCrunch 117 | _NCrunch_* 118 | .*crunch*.local.xml 119 | nCrunchTemp_* 120 | 121 | # MightyMoose 122 | *.mm.* 123 | AutoTest.Net/ 124 | 125 | # Web workbench (sass) 126 | .sass-cache/ 127 | 128 | # Installshield output folder 129 | [Ee]xpress/ 130 | 131 | # DocProject is a documentation generator add-in 132 | DocProject/buildhelp/ 133 | DocProject/Help/*.HxT 134 | DocProject/Help/*.HxC 135 | DocProject/Help/*.hhc 136 | DocProject/Help/*.hhk 137 | DocProject/Help/*.hhp 138 | DocProject/Help/Html2 139 | DocProject/Help/html 140 | 141 | # Click-Once directory 142 | publish/ 143 | 144 | # Publish Web Output 145 | *.[Pp]ublish.xml 146 | *.azurePubxml 147 | # TODO: Comment the next line if you want to checkin your web deploy settings 148 | # but database connection strings (with potential passwords) will be unencrypted 149 | #*.pubxml 150 | *.publishproj 151 | 152 | # Microsoft Azure Web App publish settings. Comment the next line if you want to 153 | # checkin your Azure Web App publish settings, but sensitive information contained 154 | # in these scripts will be unencrypted 155 | PublishScripts/ 156 | 157 | # NuGet Packages 158 | *.nupkg 159 | # The packages folder can be ignored because of Package Restore 160 | **/packages/* 161 | # except build/, which is used as an MSBuild target. 162 | !**/packages/build/ 163 | # Uncomment if necessary however generally it will be regenerated when needed 164 | #!**/packages/repositories.config 165 | # NuGet v3's project.json files produces more ignoreable files 166 | *.nuget.props 167 | *.nuget.targets 168 | 169 | # Microsoft Azure Build Output 170 | csx/ 171 | *.build.csdef 172 | 173 | # Microsoft Azure Emulator 174 | ecf/ 175 | rcf/ 176 | 177 | # Windows Store app package directories and files 178 | AppPackages/ 179 | BundleArtifacts/ 180 | Package.StoreAssociation.xml 181 | _pkginfo.txt 182 | 183 | # Visual Studio cache files 184 | # files ending in .cache can be ignored 185 | *.[Cc]ache 186 | # but keep track of directories ending in .cache 187 | !*.[Cc]ache/ 188 | 189 | # Others 190 | ClientBin/ 191 | ~$* 192 | *~ 193 | *.dbmdl 194 | *.dbproj.schemaview 195 | *.jfm 196 | *.pfx 197 | *.publishsettings 198 | node_modules/ 199 | orleans.codegen.cs 200 | 201 | # Since there are multiple workflows, uncomment next line to ignore bower_components 202 | # (https://github.com/github/gitignore/pull/1529#issuecomment-104372622) 203 | #bower_components/ 204 | 205 | # RIA/Silverlight projects 206 | Generated_Code/ 207 | 208 | # Backup & report files from converting an old project file 209 | # to a newer Visual Studio version. Backup files are not needed, 210 | # because we have git ;-) 211 | _UpgradeReport_Files/ 212 | Backup*/ 213 | UpgradeLog*.XML 214 | UpgradeLog*.htm 215 | 216 | # SQL Server files 217 | *.mdf 218 | *.ldf 219 | 220 | # Business Intelligence projects 221 | *.rdl.data 222 | *.bim.layout 223 | *.bim_*.settings 224 | 225 | # Microsoft Fakes 226 | FakesAssemblies/ 227 | 228 | # GhostDoc plugin setting file 229 | *.GhostDoc.xml 230 | 231 | # Node.js Tools for Visual Studio 232 | .ntvs_analysis.dat 233 | 234 | # Visual Studio 6 build log 235 | *.plg 236 | 237 | # Visual Studio 6 workspace options file 238 | *.opt 239 | 240 | # Visual Studio LightSwitch build output 241 | **/*.HTMLClient/GeneratedArtifacts 242 | **/*.DesktopClient/GeneratedArtifacts 243 | **/*.DesktopClient/ModelManifest.xml 244 | **/*.Server/GeneratedArtifacts 245 | **/*.Server/ModelManifest.xml 246 | _Pvt_Extensions 247 | 248 | # Paket dependency manager 249 | .paket/paket.exe 250 | paket-files/ 251 | 252 | # FAKE - F# Make 253 | .fake/ 254 | 255 | # JetBrains Rider 256 | .idea/ 257 | *.sln.iml 258 | 259 | # CodeRush 260 | .cr/ 261 | 262 | # Python Tools for Visual Studio (PTVS) 263 | __pycache__/ 264 | *.pyc -------------------------------------------------------------------------------- /AzFunctions/Minimal/C#/ExtractApp/ExtractCSV.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.ComponentModel; 3 | using System.Data; 4 | using System.Data.SqlClient; 5 | using System.Diagnostics; 6 | using System.IO; 7 | using System.Linq; 8 | using System.Text.RegularExpressions; 9 | using System.Threading.Tasks; 10 | using Microsoft.AspNetCore.Mvc; 11 | using Microsoft.Azure.WebJobs; 12 | using Microsoft.Azure.WebJobs.Extensions.Http; 13 | using Microsoft.AspNetCore.Http; 14 | using Microsoft.Extensions.Logging; 15 | using Newtonsoft.Json; 16 | using Azure.Core; 17 | using Azure.Identity; 18 | using Azure.Storage.Files.DataLake; 19 | using Microsoft.Extensions.Configuration; 20 | 21 | namespace ExtractApp 22 | { 23 | public static class ExtractCSV 24 | { 25 | 26 | [FunctionName("ExtractCSV")] 27 | public static async Task Run( 28 | [HttpTrigger(AuthorizationLevel.Function, "get", "post", Route = null)] HttpRequest req, 29 | ILogger log) 30 | { 31 | /* Set Parameters */ 32 | string requestBody = await new StreamReader(req.Body).ReadToEndAsync(); 33 | dynamic data = JsonConvert.DeserializeObject(requestBody); 34 | string storageAccount = data?.storageAccount; 35 | string container = data?.container; 36 | string directory = data?.directory; 37 | string fileName = data?.fileName; 38 | string sqlServer = data?.sqlServer; 39 | string sqlDatabase = data?.sqlDatabase; 40 | string sqlTable = data?.sqlTable; 41 | var dt = new DataTable(); 42 | var csvParser = new Regex(",(?=(?:[^\"]*\"[^\"]*\")*(?![^\"]*\"))"); //Regex to identify and Split Double Quote 43 | 44 | // read config file if present. we use this for toggle for ExcludeManagedIdentityCredential 45 | var config = new ConfigurationBuilder() 46 | .SetBasePath(Directory.GetCurrentDirectory()) 47 | .AddJsonFile("local.settings.json",optional:true, reloadOnChange:true) 48 | .AddEnvironmentVariables() 49 | .Build(); 50 | 51 | 52 | /* Authenticate to ASDL. Note that we have a setting to Exclude MSI or not*/ 53 | var sw = new Stopwatch(); 54 | sw.Start(); 55 | var defaultAzureCredentialOptions = new DefaultAzureCredentialOptions() 56 | { 57 | ExcludeAzureCliCredential = true, 58 | ExcludeManagedIdentityCredential = 59 | Convert.ToBoolean(config["ExcludeManagedIdentityCredential"] ?? "false"), 60 | ExcludeSharedTokenCacheCredential = true, 61 | ExcludeVisualStudioCredential = false, 62 | ExcludeAzurePowerShellCredential = true, 63 | ExcludeEnvironmentCredential = true, 64 | ExcludeVisualStudioCodeCredential = true, 65 | ExcludeInteractiveBrowserCredential = true 66 | }; 67 | var resource = $"https://{storageAccount}.blob.core.windows.net"; 68 | var dataLakeServiceClient = new DataLakeServiceClient(new Uri(resource), new DefaultAzureCredential(defaultAzureCredentialOptions)); 69 | var fileSystemClient = dataLakeServiceClient.GetFileSystemClient(container); 70 | var directoryClient = fileSystemClient.GetDirectoryClient(directory); 71 | var fileClient = directoryClient.GetFileClient(fileName); 72 | 73 | Console.WriteLine("ExtractCSV - Sample AzFunction to Extract CSV and write to SQL"); 74 | Console.WriteLine("Source: {0}", System.IO.Path.Combine(storageAccount!,container!, directory!, fileName!)); 75 | Console.WriteLine("Target: {0}.{1}.{2}", sqlServer,sqlDatabase, sqlTable); 76 | 77 | Console.WriteLine("Connected to ASDL: {0} ms", sw.ElapsedMilliseconds); 78 | 79 | /* Authenticate to SQL. */ 80 | var con = new SqlConnection() 81 | { 82 | ConnectionString = $"Server={sqlServer};Database={sqlDatabase}", 83 | AccessToken = (await new DefaultAzureCredential(defaultAzureCredentialOptions).GetTokenAsync(new TokenRequestContext(new string[] { "https://database.windows.net//.default" }))).Token 84 | }; 85 | await con.OpenAsync(); 86 | Console.WriteLine("Connected to SQL: {0} ms", sw.ElapsedMilliseconds); 87 | sw.Restart(); 88 | 89 | // Read CSV into DataTable 90 | var streamReader = new StreamReader(await fileClient.OpenReadAsync()); 91 | string[] headers = (await streamReader.ReadLineAsync())!.Split(','); 92 | foreach (string header in headers) 93 | { 94 | dt.Columns.Add(header == "" ? "id" : header); 95 | } 96 | 97 | while (!streamReader.EndOfStream) 98 | { 99 | var line = await streamReader.ReadLineAsync(); 100 | object[] columnArray = csvParser.Split(line!).ToArray(); 101 | var nr = dt.NewRow(); 102 | 103 | //Todo: Add Logic for specialist Transform 104 | nr.ItemArray = columnArray; 105 | dt.Rows.Add(nr); 106 | } 107 | Console.WriteLine("Read CSV: {0} Rows in {1} ms", dt.Rows.Count, sw.ElapsedMilliseconds); 108 | sw.Restart(); 109 | 110 | 111 | using (var sqlBulkCopy = new SqlBulkCopy(con)) 112 | { 113 | sqlBulkCopy.DestinationTableName = sqlTable; 114 | await sqlBulkCopy.WriteToServerAsync(dt); 115 | } 116 | con.Close(); 117 | con.Dispose(); 118 | Console.WriteLine("Write SQL: {0} Rows in {1} ms", dt.Rows.Count, sw.ElapsedMilliseconds); 119 | sw.Restart(); 120 | 121 | 122 | string responseMessage = "OK"; 123 | return new OkObjectResult(responseMessage); 124 | } 125 | } 126 | } 127 | -------------------------------------------------------------------------------- /AzFunctions/Minimal/C#/ExtractApp/Properties/ServiceDependencies/AzExtractApp - Zip Deploy/profile.arm.json: -------------------------------------------------------------------------------- 1 | { 2 | "$schema": "https://schema.management.azure.com/schemas/2018-05-01/subscriptionDeploymentTemplate.json#", 3 | "contentVersion": "1.0.0.0", 4 | "metadata": { 5 | "_dependencyType": "compute.function.linux.appService" 6 | }, 7 | "parameters": { 8 | "resourceGroupName": { 9 | "type": "string", 10 | "defaultValue": "rg-MinimalFunctionApp", 11 | "metadata": { 12 | "description": "Name of the resource group for the resource. It is recommended to put resources under same resource group for better tracking." 13 | } 14 | }, 15 | "resourceGroupLocation": { 16 | "type": "string", 17 | "defaultValue": "northeurope", 18 | "metadata": { 19 | "description": "Location of the resource group. Resource groups could have different location than resources, however by default we use API versions from latest hybrid profile which support all locations for resource types we support." 20 | } 21 | }, 22 | "resourceName": { 23 | "type": "string", 24 | "defaultValue": "AzExtractApp", 25 | "metadata": { 26 | "description": "Name of the main resource to be created by this template." 27 | } 28 | }, 29 | "resourceLocation": { 30 | "type": "string", 31 | "defaultValue": "[parameters('resourceGroupLocation')]", 32 | "metadata": { 33 | "description": "Location of the resource. By default use resource group's location, unless the resource provider is not supported there." 34 | } 35 | } 36 | }, 37 | "resources": [ 38 | { 39 | "type": "Microsoft.Resources/resourceGroups", 40 | "name": "[parameters('resourceGroupName')]", 41 | "location": "[parameters('resourceGroupLocation')]", 42 | "apiVersion": "2019-10-01" 43 | }, 44 | { 45 | "type": "Microsoft.Resources/deployments", 46 | "name": "[concat(parameters('resourceGroupName'), 'Deployment', uniqueString(concat(parameters('resourceName'), subscription().subscriptionId)))]", 47 | "resourceGroup": "[parameters('resourceGroupName')]", 48 | "apiVersion": "2019-10-01", 49 | "dependsOn": [ 50 | "[parameters('resourceGroupName')]" 51 | ], 52 | "properties": { 53 | "mode": "Incremental", 54 | "expressionEvaluationOptions": { 55 | "scope": "inner" 56 | }, 57 | "parameters": { 58 | "resourceGroupName": { 59 | "value": "[parameters('resourceGroupName')]" 60 | }, 61 | "resourceGroupLocation": { 62 | "value": "[parameters('resourceGroupLocation')]" 63 | }, 64 | "resourceName": { 65 | "value": "[parameters('resourceName')]" 66 | }, 67 | "resourceLocation": { 68 | "value": "[parameters('resourceLocation')]" 69 | } 70 | }, 71 | "template": { 72 | "$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", 73 | "contentVersion": "1.0.0.0", 74 | "parameters": { 75 | "resourceGroupName": { 76 | "type": "string" 77 | }, 78 | "resourceGroupLocation": { 79 | "type": "string" 80 | }, 81 | "resourceName": { 82 | "type": "string" 83 | }, 84 | "resourceLocation": { 85 | "type": "string" 86 | } 87 | }, 88 | "variables": { 89 | "storage_name": "[toLower(concat('storage', uniqueString(concat(parameters('resourceName'), subscription().subscriptionId))))]", 90 | "appServicePlan_name": "[concat('Plan', uniqueString(concat(parameters('resourceName'), subscription().subscriptionId)))]", 91 | "storage_ResourceId": "[concat('/subscriptions/', subscription().subscriptionId, '/resourceGroups/', parameters('resourceGroupName'), '/providers/Microsoft.Storage/storageAccounts/', variables('storage_name'))]", 92 | "appServicePlan_ResourceId": "[concat('/subscriptions/', subscription().subscriptionId, '/resourceGroups/', parameters('resourceGroupName'), '/providers/Microsoft.Web/serverFarms/', variables('appServicePlan_name'))]", 93 | "function_ResourceId": "[concat('/subscriptions/', subscription().subscriptionId, '/resourceGroups/', parameters('resourceGroupName'), '/providers/Microsoft.Web/sites/', parameters('resourceName'))]" 94 | }, 95 | "resources": [ 96 | { 97 | "location": "[parameters('resourceLocation')]", 98 | "name": "[parameters('resourceName')]", 99 | "type": "Microsoft.Web/sites", 100 | "apiVersion": "2015-08-01", 101 | "tags": { 102 | "[concat('hidden-related:', variables('appServicePlan_ResourceId'))]": "empty" 103 | }, 104 | "dependsOn": [ 105 | "[variables('appServicePlan_ResourceId')]", 106 | "[variables('storage_ResourceId')]" 107 | ], 108 | "kind": "functionapp", 109 | "properties": { 110 | "name": "[parameters('resourceName')]", 111 | "kind": "functionapp", 112 | "httpsOnly": true, 113 | "reserved": false, 114 | "serverFarmId": "[variables('appServicePlan_ResourceId')]", 115 | "siteConfig": { 116 | "alwaysOn": true, 117 | "linuxFxVersion": "dotnet|3.1" 118 | } 119 | }, 120 | "identity": { 121 | "type": "SystemAssigned" 122 | }, 123 | "resources": [ 124 | { 125 | "name": "appsettings", 126 | "type": "config", 127 | "apiVersion": "2015-08-01", 128 | "dependsOn": [ 129 | "[variables('function_ResourceId')]" 130 | ], 131 | "properties": { 132 | "AzureWebJobsStorage": "[concat('DefaultEndpointsProtocol=https;AccountName=', variables('storage_name'), ';AccountKey=', listKeys(variables('storage_ResourceId'), '2017-10-01').keys[0].value, ';EndpointSuffix=', 'core.windows.net')]", 133 | "FUNCTIONS_EXTENSION_VERSION": "~3", 134 | "FUNCTIONS_WORKER_RUNTIME": "dotnet" 135 | } 136 | } 137 | ] 138 | }, 139 | { 140 | "location": "[parameters('resourceGroupLocation')]", 141 | "name": "[variables('storage_name')]", 142 | "type": "Microsoft.Storage/storageAccounts", 143 | "apiVersion": "2017-10-01", 144 | "tags": { 145 | "[concat('hidden-related:', concat('/providers/Microsoft.Web/sites/', parameters('resourceName')))]": "empty" 146 | }, 147 | "properties": { 148 | "supportsHttpsTrafficOnly": true 149 | }, 150 | "sku": { 151 | "name": "Standard_LRS" 152 | }, 153 | "kind": "Storage" 154 | }, 155 | { 156 | "location": "[parameters('resourceGroupLocation')]", 157 | "name": "[variables('appServicePlan_name')]", 158 | "type": "Microsoft.Web/serverFarms", 159 | "apiVersion": "2015-02-01", 160 | "kind": "linux", 161 | "properties": { 162 | "name": "[variables('appServicePlan_name')]", 163 | "sku": "Standard", 164 | "workerSizeId": "0", 165 | "reserved": true 166 | } 167 | } 168 | ] 169 | } 170 | } 171 | } 172 | ] 173 | } -------------------------------------------------------------------------------- /PBI/CRM/DAX/q. LENE.dax.serverTimings: -------------------------------------------------------------------------------- 1 | { 2 | "FileFormatVersion": 1, 3 | "StorageEngineDuration": 4, 4 | "StorageEngineDurationPercentage": 0.0, 5 | "FormulaEngineDuration": 25, 6 | "FormulaEngineDurationPercentage": 0.0, 7 | "StoreageEngineEvents": [ 8 | { 9 | "Class": "VertiPaqSEQueryEnd", 10 | "Subclass": "VertiPaqScanInternal", 11 | "Query": "SET DC_KIND=\"DENSE\";\r\nSELECT\r\n'Deals'[VersionDate],\r\nCOUNT () \r\nFROM 'Deals';\r\n", 12 | "Duration": 0, 13 | "CpuTime": 0, 14 | "CpuFactor": null, 15 | "RowNumber": 1, 16 | "EstimatedRows": null, 17 | "EstimatedKBytes": null, 18 | "HighlightQuery": false, 19 | "InternalBatchEvent": false, 20 | "QueryRichText": "SET DC_KIND=\"DENSE\";\r\nSELECT\r\n'Deals'[VersionDate],\r\nCOUNT () \r\nFROM 'Deals';\r\n" 21 | }, 22 | { 23 | "Class": "VertiPaqSEQueryEnd", 24 | "Subclass": "VertiPaqScan", 25 | "Query": "SET DC_KIND=\"AUTO\";\r\nSELECT\r\n'Deals'[VersionDate]\r\nFROM 'Deals';\r\n\r\n\r\n'Estimated size ( volume, marshalling bytes ) : 746, 5968'\r\n", 26 | "Duration": 0, 27 | "CpuTime": 0, 28 | "CpuFactor": null, 29 | "RowNumber": 2, 30 | "EstimatedRows": 746, 31 | "EstimatedKBytes": 6, 32 | "HighlightQuery": false, 33 | "InternalBatchEvent": false, 34 | "QueryRichText": "SET DC_KIND=\"AUTO\";\r\nSELECT\r\n'Deals'[VersionDate]\r\nFROM 'Deals';\r\n\r\n\r\n'Estimated size ( volume, marshalling bytes ) : 746, 5968'\r\n" 35 | }, 36 | { 37 | "Class": "VertiPaqSEQueryEnd", 38 | "Subclass": "VertiPaqScanInternal", 39 | "Query": "SET DC_KIND=\"DENSE\";\r\nSELECT\r\n'Date'[Date],\r\nCOUNT () \r\nFROM 'Date';\r\n", 40 | "Duration": 1, 41 | "CpuTime": 0, 42 | "CpuFactor": null, 43 | "RowNumber": 3, 44 | "EstimatedRows": null, 45 | "EstimatedKBytes": null, 46 | "HighlightQuery": false, 47 | "InternalBatchEvent": false, 48 | "QueryRichText": "SET DC_KIND=\"DENSE\";\r\nSELECT\r\n'Date'[Date],\r\nCOUNT () \r\nFROM 'Date';\r\n" 49 | }, 50 | { 51 | "Class": "VertiPaqSEQueryEnd", 52 | "Subclass": "VertiPaqScan", 53 | "Query": "SET DC_KIND=\"AUTO\";\r\nSELECT\r\n'Date'[Date]\r\nFROM 'Date';\r\n\r\n\r\n'Estimated size ( volume, marshalling bytes ) : 1464, 11712'\r\n", 54 | "Duration": 1, 55 | "CpuTime": 0, 56 | "CpuFactor": null, 57 | "RowNumber": 4, 58 | "EstimatedRows": 1464, 59 | "EstimatedKBytes": 12, 60 | "HighlightQuery": false, 61 | "InternalBatchEvent": false, 62 | "QueryRichText": "SET DC_KIND=\"AUTO\";\r\nSELECT\r\n'Date'[Date]\r\nFROM 'Date';\r\n\r\n\r\n'Estimated size ( volume, marshalling bytes ) : 1464, 11712'\r\n" 63 | }, 64 | { 65 | "Class": "VertiPaqSEQueryEnd", 66 | "Subclass": "VertiPaqScanInternal", 67 | "Query": "SET DC_KIND=\"C32\";\r\nSELECT\r\n'Date'[Month], 'Date'[MonthNo], 'Deals'[Deal_Name], 'Pipeline'[Deal_Stage]\r\nFROM 'Deals'\r\n\tLEFT OUTER JOIN 'Date' ON 'Deals'[VersionDate]='Date'[Date]\r\n\tLEFT OUTER JOIN 'Pipeline' ON 'Deals'[Deal Stage]='Pipeline'[Deal_Stage];\r\n", 68 | "Duration": 0, 69 | "CpuTime": 0, 70 | "CpuFactor": null, 71 | "RowNumber": 5, 72 | "EstimatedRows": null, 73 | "EstimatedKBytes": null, 74 | "HighlightQuery": false, 75 | "InternalBatchEvent": false, 76 | "QueryRichText": "SET DC_KIND=\"C32\";\r\nSELECT\r\n'Date'[Month], 'Date'[MonthNo], 'Deals'[Deal_Name], 'Pipeline'[Deal_Stage]\r\nFROM 'Deals'\r\n\tLEFT OUTER JOIN 'Date' ON 'Deals'[VersionDate]='Date'[Date]\r\n\tLEFT OUTER JOIN 'Pipeline' ON 'Deals'[Deal Stage]='Pipeline'[Deal_Stage];\r\n" 77 | }, 78 | { 79 | "Class": "VertiPaqSEQueryEnd", 80 | "Subclass": "VertiPaqScan", 81 | "Query": "SET DC_KIND=\"AUTO\";\r\nSELECT\r\n'Date'[Month], 'Date'[MonthNo], 'Deals'[Deal_Name], 'Pipeline'[Deal_Stage]\r\nFROM 'Deals'\r\n\tLEFT OUTER JOIN 'Date' ON 'Deals'[VersionDate]='Date'[Date]\r\n\tLEFT OUTER JOIN 'Pipeline' ON 'Deals'[Deal Stage]='Pipeline'[Deal_Stage];\r\n\r\n\r\n'Estimated size ( volume, marshalling bytes ) : 1107, 4428'\r\n", 82 | "Duration": 1, 83 | "CpuTime": 0, 84 | "CpuFactor": null, 85 | "RowNumber": 6, 86 | "EstimatedRows": 1107, 87 | "EstimatedKBytes": 5, 88 | "HighlightQuery": false, 89 | "InternalBatchEvent": false, 90 | "QueryRichText": "SET DC_KIND=\"AUTO\";\r\nSELECT\r\n'Date'[Month], 'Date'[MonthNo], 'Deals'[Deal_Name], 'Pipeline'[Deal_Stage]\r\nFROM 'Deals'\r\n\tLEFT OUTER JOIN 'Date' ON 'Deals'[VersionDate]='Date'[Date]\r\n\tLEFT OUTER JOIN 'Pipeline' ON 'Deals'[Deal Stage]='Pipeline'[Deal_Stage];\r\n\r\n\r\n'Estimated size ( volume, marshalling bytes ) : 1107, 4428'\r\n" 91 | }, 92 | { 93 | "Class": "VertiPaqSEQueryEnd", 94 | "Subclass": "VertiPaqScanInternal", 95 | "Query": "SET DC_KIND=\"C32\";\r\nSELECT\r\n'Date'[Date], 'Date'[Month], 'Date'[MonthNo]\r\nFROM 'Date';\r\n", 96 | "Duration": 0, 97 | "CpuTime": 0, 98 | "CpuFactor": null, 99 | "RowNumber": 7, 100 | "EstimatedRows": null, 101 | "EstimatedKBytes": null, 102 | "HighlightQuery": false, 103 | "InternalBatchEvent": false, 104 | "QueryRichText": "SET DC_KIND=\"C32\";\r\nSELECT\r\n'Date'[Date], 'Date'[Month], 'Date'[MonthNo]\r\nFROM 'Date';\r\n" 105 | }, 106 | { 107 | "Class": "VertiPaqSEQueryEnd", 108 | "Subclass": "VertiPaqScan", 109 | "Query": "SET DC_KIND=\"AUTO\";\r\nSELECT\r\n'Date'[Date], 'Date'[Month], 'Date'[MonthNo]\r\nFROM 'Date';\r\n\r\n\r\n'Estimated size ( volume, marshalling bytes ) : 1461, 5844'\r\n", 110 | "Duration": 0, 111 | "CpuTime": 0, 112 | "CpuFactor": null, 113 | "RowNumber": 8, 114 | "EstimatedRows": 1461, 115 | "EstimatedKBytes": 6, 116 | "HighlightQuery": false, 117 | "InternalBatchEvent": false, 118 | "QueryRichText": "SET DC_KIND=\"AUTO\";\r\nSELECT\r\n'Date'[Date], 'Date'[Month], 'Date'[MonthNo]\r\nFROM 'Date';\r\n\r\n\r\n'Estimated size ( volume, marshalling bytes ) : 1461, 5844'\r\n" 119 | }, 120 | { 121 | "Class": "VertiPaqSEQueryEnd", 122 | "Subclass": "VertiPaqScanInternal", 123 | "Query": "SET DC_KIND=\"C32\";\r\nSELECT\r\n'Date'[Date], 'Deals'[VersionDate], 'Deals'[Deal_Name]\r\nFROM 'Deals'\r\n\tLEFT OUTER JOIN 'Date' ON 'Deals'[VersionDate]='Date'[Date]\r\nWHERE\r\n\t'Date'[Date] INB ( 43466.000000, 43467.000000, 43468.000000, 43469.000000, 43470.000000, 43471.000000, 43472.000000, 43473.000000, 43474.000000, 43475.000000..[1096 total values, not all displayed] ) ;\r\n", 124 | "Duration": 0, 125 | "CpuTime": 0, 126 | "CpuFactor": null, 127 | "RowNumber": 9, 128 | "EstimatedRows": null, 129 | "EstimatedKBytes": null, 130 | "HighlightQuery": false, 131 | "InternalBatchEvent": false, 132 | "QueryRichText": "SET DC_KIND=\"C32\";\r\nSELECT\r\n'Date'[Date], 'Deals'[VersionDate], 'Deals'[Deal_Name]\r\nFROM 'Deals'\r\n\tLEFT OUTER JOIN 'Date' ON 'Deals'[VersionDate]='Date'[Date]\r\nWHERE\r\n\t'Date'[Date] INB ( 43466.000000, 43467.000000, 43468.000000, 43469.000000, 43470.000000, 43471.000000, 43472.000000, 43473.000000, 43474.000000, 43475.000000..[1096 total values, not all displayed] ) ;\r\n" 133 | }, 134 | { 135 | "Class": "VertiPaqSEQueryEnd", 136 | "Subclass": "VertiPaqScan", 137 | "Query": "SET DC_KIND=\"AUTO\";\r\nSELECT\r\n'Date'[Date], 'Deals'[VersionDate], 'Deals'[Deal_Name]\r\nFROM 'Deals'\r\n\tLEFT OUTER JOIN 'Date' ON 'Deals'[VersionDate]='Date'[Date]\r\nWHERE\r\n\t'Date'[Date] IN ( 44174.000000, 44215.000000, 44256.000000, 44297.000000, 44338.000000, 44379.000000, 44420.000000, 43846.000000, 43887.000000, 43928.000000..[1096 total values, not all displayed] ) ;\r\n\r\n\r\n'Estimated size ( volume, marshalling bytes ) : 1071, 4284'\r\n", 138 | "Duration": 0, 139 | "CpuTime": 0, 140 | "CpuFactor": null, 141 | "RowNumber": 10, 142 | "EstimatedRows": 1071, 143 | "EstimatedKBytes": 5, 144 | "HighlightQuery": false, 145 | "InternalBatchEvent": false, 146 | "QueryRichText": "SET DC_KIND=\"AUTO\";\r\nSELECT\r\n'Date'[Date], 'Deals'[VersionDate], 'Deals'[Deal_Name]\r\nFROM 'Deals'\r\n\tLEFT OUTER JOIN 'Date' ON 'Deals'[VersionDate]='Date'[Date]\r\nWHERE\r\n\t'Date'[Date] IN ( 44174.000000, 44215.000000, 44256.000000, 44297.000000, 44338.000000, 44379.000000, 44420.000000, 43846.000000, 43887.000000, 43928.000000..[1096 total values, not all displayed] ) ;\r\n\r\n\r\n'Estimated size ( volume, marshalling bytes ) : 1071, 4284'\r\n" 147 | }, 148 | { 149 | "Class": "VertiPaqSEQueryEnd", 150 | "Subclass": "VertiPaqScanInternal", 151 | "Query": "SET DC_KIND=\"C32\";\r\nSELECT\r\n'Date'[Month], 'Date'[MonthNo], 'Deals'[Deal_Name], 'Pipeline'[Deal_Stage],\r\nSUM ( 'Deals'[AmountBase] ), COUNT () \r\nFROM 'Deals'\r\n\tLEFT OUTER JOIN 'Date' ON 'Deals'[VersionDate]='Date'[Date]\r\n\tLEFT OUTER JOIN 'Pipeline' ON 'Deals'[Deal Stage]='Pipeline'[Deal_Stage]\r\nWHERE\r\n\t ( 'Date'[Month], 'Date'[MonthNo], 'Deals'[Deal_Name], 'Deals'[VersionDate] ) IN32 { ( 'Dec 20', '202012', 'Innojam Deal ( 2020-03-04 ) ', 43887.000000 ) , ( 'Feb 21', '202102', 'Photofeed Deal ( 2020-02-12 ) ', 43866.000000 ) , ( 'Aug 21', '202108', 'Agimba Deal ( 2020-03-04 ) ', 43887.000000 ) , ( 'Aug 21', '202108', 'Wordpedia Deal ( 2020-07-27 ) ', 44032.000000 ) , ( 'Jan 21', '202101', 'Skyndu Deal ( 2021-01-13 ) ', 44202.000000 ) , ( 'May 21', '202105', 'Miboo Deal ( 2021-05-18 ) ', 44327.000000 ) , ( 'Jun 21', '202106', 'Skaboo Deal ( 2021-07-11 ) ', 44367.000000 ) , ( 'Nov 21', '202111', 'Thoughtsphere Deal ( 2020-11-18 ) ', 44146.000000 ) , ( 'Oct 20', '202010', 'Npath Deal ( 2020-08-03 ) ', 44039.000000 ) , ( 'Jul 20', '202007', 'Skalith Deal ( 2020-08-16 ) ', 44038.000000 ) ..[2880 total tuples, not all displayed]};\r\n", 152 | "Duration": 0, 153 | "CpuTime": 0, 154 | "CpuFactor": null, 155 | "RowNumber": 11, 156 | "EstimatedRows": null, 157 | "EstimatedKBytes": null, 158 | "HighlightQuery": false, 159 | "InternalBatchEvent": false, 160 | "QueryRichText": "SET DC_KIND=\"C32\";\r\nSELECT\r\n'Date'[Month], 'Date'[MonthNo], 'Deals'[Deal_Name], 'Pipeline'[Deal_Stage],\r\nSUM ( 'Deals'[AmountBase] ), COUNT () \r\nFROM 'Deals'\r\n\tLEFT OUTER JOIN 'Date' ON 'Deals'[VersionDate]='Date'[Date]\r\n\tLEFT OUTER JOIN 'Pipeline' ON 'Deals'[Deal Stage]='Pipeline'[Deal_Stage]\r\nWHERE\r\n\t ( 'Date'[Month], 'Date'[MonthNo], 'Deals'[Deal_Name], 'Deals'[VersionDate] ) IN32 { ( 'Dec 20', '202012', 'Innojam Deal ( 2020-03-04 ) ', 43887.000000 ) , ( 'Feb 21', '202102', 'Photofeed Deal ( 2020-02-12 ) ', 43866.000000 ) , ( 'Aug 21', '202108', 'Agimba Deal ( 2020-03-04 ) ', 43887.000000 ) , ( 'Aug 21', '202108', 'Wordpedia Deal ( 2020-07-27 ) ', 44032.000000 ) , ( 'Jan 21', '202101', 'Skyndu Deal ( 2021-01-13 ) ', 44202.000000 ) , ( 'May 21', '202105', 'Miboo Deal ( 2021-05-18 ) ', 44327.000000 ) , ( 'Jun 21', '202106', 'Skaboo Deal ( 2021-07-11 ) ', 44367.000000 ) , ( 'Nov 21', '202111', 'Thoughtsphere Deal ( 2020-11-18 ) ', 44146.000000 ) , ( 'Oct 20', '202010', 'Npath Deal ( 2020-08-03 ) ', 44039.000000 ) , ( 'Jul 20', '202007', 'Skalith Deal ( 2020-08-16 ) ', 44038.000000 ) ..[2880 total tuples, not all displayed]};\r\n" 161 | }, 162 | { 163 | "Class": "VertiPaqSEQueryEnd", 164 | "Subclass": "VertiPaqScan", 165 | "Query": "SET DC_KIND=\"AUTO\";\r\nSELECT\r\n'Date'[Month], 'Date'[MonthNo], 'Deals'[Deal_Name], 'Pipeline'[Deal_Stage],\r\nSUM ( 'Deals'[AmountBase] )\r\nFROM 'Deals'\r\n\tLEFT OUTER JOIN 'Date' ON 'Deals'[VersionDate]='Date'[Date]\r\n\tLEFT OUTER JOIN 'Pipeline' ON 'Deals'[Deal Stage]='Pipeline'[Deal_Stage]\r\nWHERE\r\n\t ( 'Date'[Month], 'Date'[MonthNo], 'Deals'[Deal_Name], 'Deals'[VersionDate] ) IN { ( 'Dec 20', '202012', 'Innojam Deal ( 2020-03-04 ) ', 43887.000000 ) , ( 'Feb 21', '202102', 'Photofeed Deal ( 2020-02-12 ) ', 43866.000000 ) , ( 'Aug 21', '202108', 'Agimba Deal ( 2020-03-04 ) ', 43887.000000 ) , ( 'Aug 21', '202108', 'Wordpedia Deal ( 2020-07-27 ) ', 44032.000000 ) , ( 'Jan 21', '202101', 'Skyndu Deal ( 2021-01-13 ) ', 44202.000000 ) , ( 'May 21', '202105', 'Miboo Deal ( 2021-05-18 ) ', 44327.000000 ) , ( 'Jun 21', '202106', 'Skaboo Deal ( 2021-07-11 ) ', 44367.000000 ) , ( 'Nov 21', '202111', 'Thoughtsphere Deal ( 2020-11-18 ) ', 44146.000000 ) , ( 'Oct 20', '202010', 'Npath Deal ( 2020-08-03 ) ', 44039.000000 ) , ( 'Jul 20', '202007', 'Skalith Deal ( 2020-08-16 ) ', 44038.000000 ) ..[2880 total tuples, not all displayed]};\r\n\r\n\r\n'Estimated size ( volume, marshalling bytes ) : 539, 10780'\r\n", 166 | "Duration": 0, 167 | "CpuTime": 0, 168 | "CpuFactor": null, 169 | "RowNumber": 12, 170 | "EstimatedRows": 539, 171 | "EstimatedKBytes": 11, 172 | "HighlightQuery": false, 173 | "InternalBatchEvent": false, 174 | "QueryRichText": "SET DC_KIND=\"AUTO\";\r\nSELECT\r\n'Date'[Month], 'Date'[MonthNo], 'Deals'[Deal_Name], 'Pipeline'[Deal_Stage],\r\nSUM ( 'Deals'[AmountBase] )\r\nFROM 'Deals'\r\n\tLEFT OUTER JOIN 'Date' ON 'Deals'[VersionDate]='Date'[Date]\r\n\tLEFT OUTER JOIN 'Pipeline' ON 'Deals'[Deal Stage]='Pipeline'[Deal_Stage]\r\nWHERE\r\n\t ( 'Date'[Month], 'Date'[MonthNo], 'Deals'[Deal_Name], 'Deals'[VersionDate] ) IN { ( 'Dec 20', '202012', 'Innojam Deal ( 2020-03-04 ) ', 43887.000000 ) , ( 'Feb 21', '202102', 'Photofeed Deal ( 2020-02-12 ) ', 43866.000000 ) , ( 'Aug 21', '202108', 'Agimba Deal ( 2020-03-04 ) ', 43887.000000 ) , ( 'Aug 21', '202108', 'Wordpedia Deal ( 2020-07-27 ) ', 44032.000000 ) , ( 'Jan 21', '202101', 'Skyndu Deal ( 2021-01-13 ) ', 44202.000000 ) , ( 'May 21', '202105', 'Miboo Deal ( 2021-05-18 ) ', 44327.000000 ) , ( 'Jun 21', '202106', 'Skaboo Deal ( 2021-07-11 ) ', 44367.000000 ) , ( 'Nov 21', '202111', 'Thoughtsphere Deal ( 2020-11-18 ) ', 44146.000000 ) , ( 'Oct 20', '202010', 'Npath Deal ( 2020-08-03 ) ', 44039.000000 ) , ( 'Jul 20', '202007', 'Skalith Deal ( 2020-08-16 ) ', 44038.000000 ) ..[2880 total tuples, not all displayed]};\r\n\r\n\r\n'Estimated size ( volume, marshalling bytes ) : 539, 10780'\r\n" 175 | }, 176 | { 177 | "Class": "VertiPaqSEQueryEnd", 178 | "Subclass": "VertiPaqScanInternal", 179 | "Query": "SET DC_KIND=\"DENSE\";\r\nSELECT\r\n'Pipeline'[Deal_Stage], 'Pipeline'[StageNo],\r\nCOUNT () \r\nFROM 'Pipeline';\r\n", 180 | "Duration": 0, 181 | "CpuTime": 0, 182 | "CpuFactor": null, 183 | "RowNumber": 13, 184 | "EstimatedRows": null, 185 | "EstimatedKBytes": null, 186 | "HighlightQuery": false, 187 | "InternalBatchEvent": false, 188 | "QueryRichText": "SET DC_KIND=\"DENSE\";\r\nSELECT\r\n'Pipeline'[Deal_Stage], 'Pipeline'[StageNo],\r\nCOUNT () \r\nFROM 'Pipeline';\r\n" 189 | }, 190 | { 191 | "Class": "VertiPaqSEQueryEnd", 192 | "Subclass": "VertiPaqScan", 193 | "Query": "SET DC_KIND=\"AUTO\";\r\nSELECT\r\n'Pipeline'[Deal_Stage], 'Pipeline'[StageNo]\r\nFROM 'Pipeline';\r\n\r\n\r\n'Estimated size ( volume, marshalling bytes ) : 120, 960'\r\n", 194 | "Duration": 0, 195 | "CpuTime": 0, 196 | "CpuFactor": null, 197 | "RowNumber": 14, 198 | "EstimatedRows": 120, 199 | "EstimatedKBytes": 1, 200 | "HighlightQuery": false, 201 | "InternalBatchEvent": false, 202 | "QueryRichText": "SET DC_KIND=\"AUTO\";\r\nSELECT\r\n'Pipeline'[Deal_Stage], 'Pipeline'[StageNo]\r\nFROM 'Pipeline';\r\n\r\n\r\n'Estimated size ( volume, marshalling bytes ) : 120, 960'\r\n" 203 | }, 204 | { 205 | "Class": "VertiPaqSEQueryEnd", 206 | "Subclass": "VertiPaqScanInternal", 207 | "Query": "SET DC_KIND=\"C32\";\r\nSELECT\r\n'Date'[Month], 'Date'[MonthNo], 'Deals'[Deal_Name]\r\nFROM 'Deals'\r\n\tLEFT OUTER JOIN 'Date' ON 'Deals'[VersionDate]='Date'[Date];\r\n", 208 | "Duration": 0, 209 | "CpuTime": 0, 210 | "CpuFactor": null, 211 | "RowNumber": 15, 212 | "EstimatedRows": null, 213 | "EstimatedKBytes": null, 214 | "HighlightQuery": false, 215 | "InternalBatchEvent": false, 216 | "QueryRichText": "SET DC_KIND=\"C32\";\r\nSELECT\r\n'Date'[Month], 'Date'[MonthNo], 'Deals'[Deal_Name]\r\nFROM 'Deals'\r\n\tLEFT OUTER JOIN 'Date' ON 'Deals'[VersionDate]='Date'[Date];\r\n" 217 | }, 218 | { 219 | "Class": "VertiPaqSEQueryEnd", 220 | "Subclass": "VertiPaqScan", 221 | "Query": "SET DC_KIND=\"AUTO\";\r\nSELECT\r\n'Date'[Month], 'Date'[MonthNo], 'Deals'[Deal_Name]\r\nFROM 'Deals'\r\n\tLEFT OUTER JOIN 'Date' ON 'Deals'[VersionDate]='Date'[Date];\r\n\r\n\r\n'Estimated size ( volume, marshalling bytes ) : 503, 2012'\r\n", 222 | "Duration": 0, 223 | "CpuTime": 0, 224 | "CpuFactor": null, 225 | "RowNumber": 16, 226 | "EstimatedRows": 503, 227 | "EstimatedKBytes": 2, 228 | "HighlightQuery": false, 229 | "InternalBatchEvent": false, 230 | "QueryRichText": "SET DC_KIND=\"AUTO\";\r\nSELECT\r\n'Date'[Month], 'Date'[MonthNo], 'Deals'[Deal_Name]\r\nFROM 'Deals'\r\n\tLEFT OUTER JOIN 'Date' ON 'Deals'[VersionDate]='Date'[Date];\r\n\r\n\r\n'Estimated size ( volume, marshalling bytes ) : 503, 2012'\r\n" 231 | }, 232 | { 233 | "Class": "VertiPaqSEQueryCacheMatch", 234 | "Subclass": "VertiPaqCacheExactMatch", 235 | "Query": "SET DC_KIND=\"AUTO\";\r\nSELECT\r\n'Date'[Date], 'Deals'[VersionDate], 'Deals'[Deal_Name]\r\nFROM 'Deals'\r\n\tLEFT OUTER JOIN 'Date' ON 'Deals'[VersionDate]='Date'[Date]\r\nWHERE\r\n\t'Date'[Date] IN ( 44174.000000, 44215.000000, 44256.000000, 44297.000000, 44338.000000, 44379.000000, 44420.000000, 43846.000000, 43887.000000, 43928.000000..[1096 total values, not all displayed] ) ;\r\n", 236 | "Duration": null, 237 | "CpuTime": null, 238 | "CpuFactor": null, 239 | "RowNumber": 17, 240 | "EstimatedRows": null, 241 | "EstimatedKBytes": null, 242 | "HighlightQuery": false, 243 | "InternalBatchEvent": false, 244 | "QueryRichText": "SET DC_KIND=\"AUTO\";\r\nSELECT\r\n'Date'[Date], 'Deals'[VersionDate], 'Deals'[Deal_Name]\r\nFROM 'Deals'\r\n\tLEFT OUTER JOIN 'Date' ON 'Deals'[VersionDate]='Date'[Date]\r\nWHERE\r\n\t'Date'[Date] IN ( 44174.000000, 44215.000000, 44256.000000, 44297.000000, 44338.000000, 44379.000000, 44420.000000, 43846.000000, 43887.000000, 43928.000000..[1096 total values, not all displayed] ) ;\r\n" 245 | }, 246 | { 247 | "Class": "VertiPaqSEQueryEnd", 248 | "Subclass": "VertiPaqScan", 249 | "Query": "SET DC_KIND=\"AUTO\";\r\nSELECT\r\n'Date'[Date], 'Deals'[VersionDate], 'Deals'[Deal_Name]\r\nFROM 'Deals'\r\n\tLEFT OUTER JOIN 'Date' ON 'Deals'[VersionDate]='Date'[Date]\r\nWHERE\r\n\t'Date'[Date] IN ( 44174.000000, 44215.000000, 44256.000000, 44297.000000, 44338.000000, 44379.000000, 44420.000000, 43846.000000, 43887.000000, 43928.000000..[1096 total values, not all displayed] ) ;\r\n\r\n\r\n'Estimated size ( volume, marshalling bytes ) : 1071, 4284'\r\n", 250 | "Duration": 0, 251 | "CpuTime": 0, 252 | "CpuFactor": null, 253 | "RowNumber": 18, 254 | "EstimatedRows": 1071, 255 | "EstimatedKBytes": 5, 256 | "HighlightQuery": false, 257 | "InternalBatchEvent": false, 258 | "QueryRichText": "SET DC_KIND=\"AUTO\";\r\nSELECT\r\n'Date'[Date], 'Deals'[VersionDate], 'Deals'[Deal_Name]\r\nFROM 'Deals'\r\n\tLEFT OUTER JOIN 'Date' ON 'Deals'[VersionDate]='Date'[Date]\r\nWHERE\r\n\t'Date'[Date] IN ( 44174.000000, 44215.000000, 44256.000000, 44297.000000, 44338.000000, 44379.000000, 44420.000000, 43846.000000, 43887.000000, 43928.000000..[1096 total values, not all displayed] ) ;\r\n\r\n\r\n'Estimated size ( volume, marshalling bytes ) : 1071, 4284'\r\n" 259 | }, 260 | { 261 | "Class": "VertiPaqSEQueryEnd", 262 | "Subclass": "VertiPaqScanInternal", 263 | "Query": "SET DC_KIND=\"C32\";\r\nSELECT\r\n'Date'[Month], 'Date'[MonthNo], 'Deals'[Deal_Name],\r\nSUM ( 'Deals'[AmountBase] ), COUNT () \r\nFROM 'Deals'\r\n\tLEFT OUTER JOIN 'Date' ON 'Deals'[VersionDate]='Date'[Date]\r\nWHERE\r\n\t ( 'Date'[Month], 'Date'[MonthNo], 'Deals'[Deal_Name], 'Deals'[VersionDate] ) IN32 { ( 'Dec 20', '202012', 'Innojam Deal ( 2020-03-04 ) ', 43887.000000 ) , ( 'Feb 21', '202102', 'Photofeed Deal ( 2020-02-12 ) ', 43866.000000 ) , ( 'Aug 21', '202108', 'Agimba Deal ( 2020-03-04 ) ', 43887.000000 ) , ( 'Aug 21', '202108', 'Wordpedia Deal ( 2020-07-27 ) ', 44032.000000 ) , ( 'Jan 21', '202101', 'Skyndu Deal ( 2021-01-13 ) ', 44202.000000 ) , ( 'May 21', '202105', 'Miboo Deal ( 2021-05-18 ) ', 44327.000000 ) , ( 'Jun 21', '202106', 'Skaboo Deal ( 2021-07-11 ) ', 44367.000000 ) , ( 'Nov 21', '202111', 'Thoughtsphere Deal ( 2020-11-18 ) ', 44146.000000 ) , ( 'Oct 20', '202010', 'Npath Deal ( 2020-08-03 ) ', 44039.000000 ) , ( 'Jul 20', '202007', 'Skalith Deal ( 2020-08-16 ) ', 44038.000000 ) ..[2880 total tuples, not all displayed]};\r\n", 264 | "Duration": 0, 265 | "CpuTime": 0, 266 | "CpuFactor": null, 267 | "RowNumber": 19, 268 | "EstimatedRows": null, 269 | "EstimatedKBytes": null, 270 | "HighlightQuery": false, 271 | "InternalBatchEvent": false, 272 | "QueryRichText": "SET DC_KIND=\"C32\";\r\nSELECT\r\n'Date'[Month], 'Date'[MonthNo], 'Deals'[Deal_Name],\r\nSUM ( 'Deals'[AmountBase] ), COUNT () \r\nFROM 'Deals'\r\n\tLEFT OUTER JOIN 'Date' ON 'Deals'[VersionDate]='Date'[Date]\r\nWHERE\r\n\t ( 'Date'[Month], 'Date'[MonthNo], 'Deals'[Deal_Name], 'Deals'[VersionDate] ) IN32 { ( 'Dec 20', '202012', 'Innojam Deal ( 2020-03-04 ) ', 43887.000000 ) , ( 'Feb 21', '202102', 'Photofeed Deal ( 2020-02-12 ) ', 43866.000000 ) , ( 'Aug 21', '202108', 'Agimba Deal ( 2020-03-04 ) ', 43887.000000 ) , ( 'Aug 21', '202108', 'Wordpedia Deal ( 2020-07-27 ) ', 44032.000000 ) , ( 'Jan 21', '202101', 'Skyndu Deal ( 2021-01-13 ) ', 44202.000000 ) , ( 'May 21', '202105', 'Miboo Deal ( 2021-05-18 ) ', 44327.000000 ) , ( 'Jun 21', '202106', 'Skaboo Deal ( 2021-07-11 ) ', 44367.000000 ) , ( 'Nov 21', '202111', 'Thoughtsphere Deal ( 2020-11-18 ) ', 44146.000000 ) , ( 'Oct 20', '202010', 'Npath Deal ( 2020-08-03 ) ', 44039.000000 ) , ( 'Jul 20', '202007', 'Skalith Deal ( 2020-08-16 ) ', 44038.000000 ) ..[2880 total tuples, not all displayed]};\r\n" 273 | }, 274 | { 275 | "Class": "VertiPaqSEQueryEnd", 276 | "Subclass": "VertiPaqScan", 277 | "Query": "SET DC_KIND=\"AUTO\";\r\nSELECT\r\n'Date'[Month], 'Date'[MonthNo], 'Deals'[Deal_Name],\r\nSUM ( 'Deals'[AmountBase] )\r\nFROM 'Deals'\r\n\tLEFT OUTER JOIN 'Date' ON 'Deals'[VersionDate]='Date'[Date]\r\nWHERE\r\n\t ( 'Date'[Month], 'Date'[MonthNo], 'Deals'[Deal_Name], 'Deals'[VersionDate] ) IN { ( 'Dec 20', '202012', 'Innojam Deal ( 2020-03-04 ) ', 43887.000000 ) , ( 'Feb 21', '202102', 'Photofeed Deal ( 2020-02-12 ) ', 43866.000000 ) , ( 'Aug 21', '202108', 'Agimba Deal ( 2020-03-04 ) ', 43887.000000 ) , ( 'Aug 21', '202108', 'Wordpedia Deal ( 2020-07-27 ) ', 44032.000000 ) , ( 'Jan 21', '202101', 'Skyndu Deal ( 2021-01-13 ) ', 44202.000000 ) , ( 'May 21', '202105', 'Miboo Deal ( 2021-05-18 ) ', 44327.000000 ) , ( 'Jun 21', '202106', 'Skaboo Deal ( 2021-07-11 ) ', 44367.000000 ) , ( 'Nov 21', '202111', 'Thoughtsphere Deal ( 2020-11-18 ) ', 44146.000000 ) , ( 'Oct 20', '202010', 'Npath Deal ( 2020-08-03 ) ', 44039.000000 ) , ( 'Jul 20', '202007', 'Skalith Deal ( 2020-08-16 ) ', 44038.000000 ) ..[2880 total tuples, not all displayed]};\r\n\r\n\r\n'Estimated size ( volume, marshalling bytes ) : 503, 10060'\r\n", 278 | "Duration": 1, 279 | "CpuTime": 0, 280 | "CpuFactor": null, 281 | "RowNumber": 20, 282 | "EstimatedRows": 503, 283 | "EstimatedKBytes": 10, 284 | "HighlightQuery": false, 285 | "InternalBatchEvent": false, 286 | "QueryRichText": "SET DC_KIND=\"AUTO\";\r\nSELECT\r\n'Date'[Month], 'Date'[MonthNo], 'Deals'[Deal_Name],\r\nSUM ( 'Deals'[AmountBase] )\r\nFROM 'Deals'\r\n\tLEFT OUTER JOIN 'Date' ON 'Deals'[VersionDate]='Date'[Date]\r\nWHERE\r\n\t ( 'Date'[Month], 'Date'[MonthNo], 'Deals'[Deal_Name], 'Deals'[VersionDate] ) IN { ( 'Dec 20', '202012', 'Innojam Deal ( 2020-03-04 ) ', 43887.000000 ) , ( 'Feb 21', '202102', 'Photofeed Deal ( 2020-02-12 ) ', 43866.000000 ) , ( 'Aug 21', '202108', 'Agimba Deal ( 2020-03-04 ) ', 43887.000000 ) , ( 'Aug 21', '202108', 'Wordpedia Deal ( 2020-07-27 ) ', 44032.000000 ) , ( 'Jan 21', '202101', 'Skyndu Deal ( 2021-01-13 ) ', 44202.000000 ) , ( 'May 21', '202105', 'Miboo Deal ( 2021-05-18 ) ', 44327.000000 ) , ( 'Jun 21', '202106', 'Skaboo Deal ( 2021-07-11 ) ', 44367.000000 ) , ( 'Nov 21', '202111', 'Thoughtsphere Deal ( 2020-11-18 ) ', 44146.000000 ) , ( 'Oct 20', '202010', 'Npath Deal ( 2020-08-03 ) ', 44039.000000 ) , ( 'Jul 20', '202007', 'Skalith Deal ( 2020-08-16 ) ', 44038.000000 ) ..[2880 total tuples, not all displayed]};\r\n\r\n\r\n'Estimated size ( volume, marshalling bytes ) : 503, 10060'\r\n" 287 | }, 288 | { 289 | "Class": "VertiPaqSEQueryEnd", 290 | "Subclass": "VertiPaqScanInternal", 291 | "Query": "SET DC_KIND=\"DENSE\";\r\nSELECT\r\n'Date'[Month], 'Date'[MonthNo],\r\nCOUNT () \r\nFROM 'Date';\r\n", 292 | "Duration": 1, 293 | "CpuTime": 0, 294 | "CpuFactor": null, 295 | "RowNumber": 21, 296 | "EstimatedRows": null, 297 | "EstimatedKBytes": null, 298 | "HighlightQuery": false, 299 | "InternalBatchEvent": false, 300 | "QueryRichText": "SET DC_KIND=\"DENSE\";\r\nSELECT\r\n'Date'[Month], 'Date'[MonthNo],\r\nCOUNT () \r\nFROM 'Date';\r\n" 301 | }, 302 | { 303 | "Class": "VertiPaqSEQueryEnd", 304 | "Subclass": "VertiPaqScan", 305 | "Query": "SET DC_KIND=\"AUTO\";\r\nSELECT\r\n'Date'[Month], 'Date'[MonthNo]\r\nFROM 'Date';\r\n\r\n\r\n'Estimated size ( volume, marshalling bytes ) : 2601, 20808'\r\n", 306 | "Duration": 1, 307 | "CpuTime": 0, 308 | "CpuFactor": null, 309 | "RowNumber": 22, 310 | "EstimatedRows": 2601, 311 | "EstimatedKBytes": 21, 312 | "HighlightQuery": false, 313 | "InternalBatchEvent": false, 314 | "QueryRichText": "SET DC_KIND=\"AUTO\";\r\nSELECT\r\n'Date'[Month], 'Date'[MonthNo]\r\nFROM 'Date';\r\n\r\n\r\n'Estimated size ( volume, marshalling bytes ) : 2601, 20808'\r\n" 315 | } 316 | ], 317 | "StorageEngineCpu": 0, 318 | "TotalDuration": 29, 319 | "StorageEngineQueryCount": 11, 320 | "VertipaqCacheMatches": 1, 321 | "TotalCpuDuration": 31, 322 | "QueryEndDateTime": "2023-05-16T12:31:43.173333+01:00" 323 | } -------------------------------------------------------------------------------- /PBI/CRM/Demo/test-companies.csv: -------------------------------------------------------------------------------- 1 | Company name,Company Domain Name,Website URL,Company owner,Target Account,Ideal Customer Profile Tier,Industry,Number of Employees,Annual Revenue,Total Money Raised,Year Founded,Is Public,Phone Number,Street Address,City,Postal Code,Country/Region,State/Region,_web_tech_01,_web_tech_02,_web_tech_03,_web_tech_04,Web Technologies 2 | Abata,abata.com,abata.com,Clayton Farr,,Tier 3,,,437000,,,,,,"","","","",,,,, 3 | Abatz,abatz.com,abatz.com,Test User 2,FALSE,Tier 2,Machinery,640,130000,,,TRUE,(716) 5328717,35599 Corscot Lane,Buffalo,14210,United States,New York,,,,, 4 | Agimba,agimba.com,agimba.com,Test User 2,FALSE,Tier 2,Consumer Goods,520,668000,,2007,,(775) 7975600,20 Bartillon Junction,Reno,89519,United States,Nevada,Eloqua,Mouseflow,FusionCharts,Authorizenet,Eloqua;Mouseflow;FusionCharts;Authorizenet; 5 | Agivu,agivu.com,agivu.com,Clayton Farr,,Tier 3,,75,562000,,2008,FALSE,,,"","","","",Mouseflow,Digital Ocean,Elevio,Google Tag Manager,Mouseflow;Digital Ocean;Elevio;Google Tag Manager; 6 | Aibox,aibox.com,aibox.com,Clayton Farr,TRUE,,Biotechnology,,,,,,(808) 1950766,,"","","","",,,,, 7 | Avamba,avamba.com,avamba.com,Test User 2,,Tier 3,,,891000,,1993,FALSE,,114 Ludington Center,Memphis,38131,United States,Tennessee,Bloomreach,Wp Engine,Facebook Social Plugins,Rackspace Email,Bloomreach;Wp Engine;Facebook Social Plugins;Rackspace Email; 8 | Avamm,avamm.com,avamm.com,Test User 2,,Tier 3,,10,196000,324000,1996,,,66 Buell Plaza,Cleveland,44130,United States,Ohio,Elevio,Pardot,Facebook Like Button,Google Tag Manager,Elevio;Pardot;Facebook Like Button;Google Tag Manager; 9 | Avavee,avavee.com,avavee.com,Clayton Farr,,,,,,,2004,FALSE,,890 Onsgard Hill,Chicago,60681,United States,Illinois,Survey Monkey,Optimonk,Intercom,Marketo,Survey Monkey;Optimonk;Intercom;Marketo; 10 | Avaveo,avaveo.com,avaveo.com,Test User 2,TRUE,Tier 3,Consumer Goods,,869000,,,,(281) 3855079,,"","","","",,,,, 11 | Babbleopia,babbleopia.com,babbleopia.com,Clayton Farr,TRUE,Tier 3,Security and Investigations,650,845000,,2008,,(813) 3403702,,"","","","",Marketo,Pardot,Intense Debate,Google Tag Manager,Marketo;Pardot;Intense Debate;Google Tag Manager; 12 | Babbleset,babbleset.com,babbleset.com,Clayton Farr,FALSE,Tier 3,Computer Software,500,372000,,,,(602) 8089731,,"","","","",,,,, 13 | Blognation,blognation.com,blognation.com,Clayton Farr,,Tier 3,,740,420000,,1998,FALSE,,,"","","","",FusionCharts,Ultipro,Bloomreach,RetailRocket,FusionCharts;Ultipro;Bloomreach;RetailRocket; 14 | Blogpad,blogpad.com,blogpad.com,Test User 2,FALSE,Tier 2,Venture Capital & Private Equity,90,533000,,,FALSE,(203) 6781340,72102 Dryden Terrace,Norwalk,06859,United States,Connecticut,,,,, 15 | Blogspan,blogspan.com,blogspan.com,Clayton Farr,,Tier 2,,545,748000,,1993,FALSE,,,"","","","",Lead Dyno,Totango,Mouseflow,Express,Lead Dyno;Totango;Mouseflow;Express; 16 | Blogtag,blogtag.com,blogtag.com,Clayton Farr,FALSE,Tier 3,Utilities,185,103000,120000,,FALSE,(804) 1517920,,"","","","",,,,, 17 | Blogtags,blogtags.com,blogtags.com,Test User 2,,Tier 3,,315,409000,,1995,,,2477 Ryan Trail,Albuquerque,87201,United States,New Mexico,Lucky Orange,Rackspace Email,Intercom,Intercom,Lucky Orange;Rackspace Email;Intercom;Intercom; 18 | BlogXS,blogxs.com,blogxs.com,Clayton Farr,,Tier 3,,260,763000,,1994,,,4 Memorial Alley,Chesapeake,23324,United States,Virginia,Survey Monkey,Knowtify,Knowtify,Rackspace Email,Survey Monkey;Knowtify;Knowtify;Rackspace Email; 19 | Bluejam,bluejam.com,bluejam.com,Clayton Farr,FALSE,Tier 3,Insurance,145,134000,,2010,,(970) 2328637,,"","","","",FusionCharts,Volusion,Heap,ClickFunnels,FusionCharts;Volusion;Heap;ClickFunnels; 20 | Brainsphere,brainsphere.com,brainsphere.com,Clayton Farr,FALSE,Tier 1,Computer & Network Security,170,853000,,,TRUE,(206) 8451681,,"","","","",,,,, 21 | Brainverse,brainverse.com,brainverse.com,Clayton Farr,,Tier 2,,,847000,,,,,91844 Onsgard Circle,Providence,02905,United States,Rhode Island,,,,, 22 | Brightbean,brightbean.com,brightbean.com,Test User 2,,Tier 3,,655,164000,,,,,,"","","","",,,,, 23 | Browseblab,browseblab.com,browseblab.com,Test User 2,,Tier 3,,,582000,,2010,FALSE,,,"","","","",Totango,Intense Debate,Express,Lead Dyno,Totango;Intense Debate;Express;Lead Dyno; 24 | Browsebug,browsebug.com,browsebug.com,Test User 2,,Tier 1,,40,187000,,,,,4428 Briar Crest Junction,Denver,80291,United States,Colorado,,,,, 25 | Browsecat,browsecat.com,browsecat.com,Clayton Farr,TRUE,,Warehousing,545,,,,TRUE,(817) 8303309,,"","","","",,,,, 26 | Browsedrive,browsedrive.com,browsedrive.com,Clayton Farr,FALSE,Tier 2,Accounting,365,326000,,,,(626) 2862711,010 Coolidge Center,Alhambra,91841,United States,California,,,,, 27 | Browsetype,browsetype.com,browsetype.com,Test User 2,FALSE,Tier 3,Medical Devices,705,170000,56000,,TRUE,(206) 7137900,647 Namekagon Drive,Seattle,98175,United States,Washington,,,,, 28 | Bubblebox,bubblebox.com,bubblebox.com,Test User 2,,Tier 1,,550,947000,,2007,,,,"","","","",Facebook Social Plugins,Lucky Orange,Drupal,Bloomreach,Facebook Social Plugins;Lucky Orange;Drupal;Bloomreach; 29 | Bubblemix,bubblemix.com,bubblemix.com,Test User 2,TRUE,,Consumer Electronics,440,,,2003,,(919) 7825228,5 Derek Court,Raleigh,27635,United States,North Carolina,Amazon S3,Gravity Forms,Drupal,Maxmind,Amazon S3;Gravity Forms;Drupal;Maxmind; 30 | Bubbletube,bubbletube.com,bubbletube.com,Test User 2,,Tier 1,,445,477000,,1989,,,7432 Paget Hill,Phoenix,85035,United States,Arizona,Pardot,FusionCharts,Volusion,Totango,Pardot;FusionCharts;Volusion;Totango; 31 | Camido,camido.com,camido.com,Test User 2,,,,100,,,2010,,,16 Garrison Drive,Charlotte,28272,United States,North Carolina,Klaviyo,ClickFunnels,Elevio,Intercom,Klaviyo;ClickFunnels;Elevio;Intercom; 32 | Centidel,centidel.com,centidel.com,Clayton Farr,,Tier 1,,755,180000,,,,,,"","","","",,,,, 33 | Centizu,centizu.com,centizu.com,Clayton Farr,FALSE,,Mechanical or Industrial Engineering,685,,,1993,,(804) 6122902,,"","","","",Ultipro,Wp Engine,Mousestats,Bloomreach,Ultipro;Wp Engine;Mousestats;Bloomreach; 34 | Chatterbridge,chatterbridge.com,chatterbridge.com,Test User 2,FALSE,Tier 1,Renewables & Environment,100,309000,,2009,FALSE,(480) 8665083,55078 Bultman Place,Mesa,85205,United States,Arizona,Facebook Like Button,Pardot,ClickFunnels,Amazon Payments,Facebook Like Button;Pardot;ClickFunnels;Amazon Payments; 35 | Cogibox,cogibox.com,cogibox.com,Clayton Farr,TRUE,,Media Production,350,,25000,,,(586) 1511139,,"","","","",,,,, 36 | Cogidoo,cogidoo.com,cogidoo.com,Test User 2,FALSE,,Online Media,105,,,,,(916) 4047906,46251 Summer Ridge Trail,Sacramento,94245,United States,California,,,,, 37 | Cogilith,cogilith.com,cogilith.com,Clayton Farr,FALSE,Tier 2,Telecommunications,710,826000,,,,(314) 8991266,,"","","","",,,,, 38 | Dabfeed,dabfeed.com,dabfeed.com,Clayton Farr,,Tier 2,,565,801000,,,FALSE,,,"","","","",,,,, 39 | Dabtype,dabtype.com,dabtype.com,Clayton Farr,FALSE,Tier 1,Computer Hardware,,348000,,,,(336) 3821408,95 Sunfield Park,Greensboro,27415,United States,North Carolina,,,,, 40 | Dabvine,dabvine.com,dabvine.com,Clayton Farr,,Tier 3,,,134000,,1998,,,20194 Commercial Avenue,Chicago,60614,United States,Illinois,Wp Engine,Adobe Dynamic Tag Management,Bloomreach,RetailRocket,Wp Engine;Adobe Dynamic Tag Management;Bloomreach;RetailRocket; 41 | DabZ,dabz.com,dabz.com,Test User 2,,Tier 2,,350,882000,,,,,4 Dayton Plaza,Monticello,55590,United States,Minnesota,,,,, 42 | Demivee,demivee.com,demivee.com,Clayton Farr,TRUE,,Wholesale,895,,,2007,,(513) 4371403,00 Almo Hill,Cincinnati,45296,United States,Ohio,Rackspace Email,Express,Bloomreach,Heap,Rackspace Email;Express;Bloomreach;Heap; 43 | Devbug,devbug.com,devbug.com,Clayton Farr,,Tier 2,,830,803000,,,FALSE,,50098 Old Shore Junction,New Orleans,70174,United States,Louisiana,,,,, 44 | Devcast,devcast.com,devcast.com,Test User 2,,Tier 3,,115,369000,,,,,,"","","","",,,,, 45 | Devify,devify.com,devify.com,Clayton Farr,,,,850,,,,,,,"","","","",,,,, 46 | Devshare,devshare.com,devshare.com,Clayton Farr,TRUE,Tier 3,Retail,700,793000,,,,(765) 3764847,7532 5th Way,Lafayette,47905,United States,Indiana,,,,, 47 | Digitube,digitube.com,digitube.com,Clayton Farr,,,,,,,,,,,"","","","",,,,, 48 | Dynabox,dynabox.com,dynabox.com,Clayton Farr,TRUE,Tier 3,Computer & Network Security,,666000,,,,(918) 7908462,,"","","","",,,,, 49 | Eamia,eamia.com,eamia.com,Test User 2,FALSE,,Wholesale,290,,,,,(727) 4294753,3667 Bay Avenue,Saint Petersburg,33710,United States,Florida,,,,, 50 | Eare,eare.com,eare.com,Clayton Farr,TRUE,Tier 3,Insurance,,527000,,2013,FALSE,(786) 9953014,,"","","","",WebEngage,Postmark,Bloomreach,Nosto,WebEngage;Postmark;Bloomreach;Nosto; 51 | Eayo,eayo.com,eayo.com,Clayton Farr,,Tier 2,,,502000,,1994,,,,"","","","",Ultipro,Nosto,Postmark,Amazon S3,Ultipro;Nosto;Postmark;Amazon S3; 52 | Eazzy,eazzy.com,eazzy.com,Clayton Farr,FALSE,Tier 2,Retail,740,849000,,2001,,(419) 7638005,5 Oriole Lane,Toledo,43656,United States,Ohio,Mouseflow,Intense Debate,Postmark,Totango,Mouseflow;Intense Debate;Postmark;Totango; 53 | Edgeclub,edgeclub.com,edgeclub.com,Clayton Farr,FALSE,,Insurance,,,,,FALSE,(405) 3785266,,"","","","",,,,, 54 | Edgepulse,edgepulse.com,edgepulse.com,Test User 2,FALSE,Tier 1,Consumer Goods,505,710000,,2004,,(212) 3648419,98044 Loomis Crossing,Jamaica,11499,United States,New York,Mousestats,Adobe Dynamic Tag Management,Lead Dyno,ClickFunnels,Mousestats;Adobe Dynamic Tag Management;Lead Dyno;ClickFunnels; 55 | Edgetag,edgetag.com,edgetag.com,Clayton Farr,TRUE,,Online Media,30,,,,TRUE,(830) 3193865,9 Mockingbird Point,San Antonio,78255,United States,Texas,,,,, 56 | Eidel,eidel.com,eidel.com,Clayton Farr,,Tier 1,,,843000,,,FALSE,,,"","","","",,,,, 57 | Einti,einti.com,einti.com,Clayton Farr,,Tier 1,,,516000,,1992,TRUE,,8831 Lake View Trail,Arlington,76011,United States,Texas,Dwolla,Lead Dyno,Facebook Like Button,Unix,Dwolla;Lead Dyno;Facebook Like Button;Unix; 58 | Eire,eire.com,eire.com,Test User 2,FALSE,Tier 2,Wireless,,581000,,2012,,(303) 2969330,658 Mendota Way,Denver,80249,United States,Colorado,Gravity Forms,Lucky Orange,Lead Dyno,Intercom,Gravity Forms;Lucky Orange;Lead Dyno;Intercom; 59 | Fanoodle,fanoodle.com,fanoodle.com,Test User 2,,,,,,,,,,,"","","","",,,,, 60 | Fatz,fatz.com,fatz.com,Clayton Farr,,Tier 1,,340,380000,,2009,,,56 Stuart Court,Durham,27705,United States,North Carolina,WebEngage,Fullstory,FusionCharts,Authorizenet,WebEngage;Fullstory;FusionCharts;Authorizenet; 61 | Feedfire,feedfire.com,feedfire.com,Test User 2,FALSE,Tier 2,Wholesale,735,683000,,1993,FALSE,(309) 3366570,3 Northview Center,Peoria,61605,United States,Illinois,Ultipro,Totango,Authorizenet,Volusion,Ultipro;Totango;Authorizenet;Volusion; 62 | Feedfish,feedfish.com,feedfish.com,Clayton Farr,FALSE,Tier 3,Warehousing,280,930000,,,,(410) 1365421,1910 Golden Leaf Street,Baltimore,21265,United States,Maryland,,,,, 63 | Feedmix,feedmix.com,feedmix.com,Clayton Farr,,Tier 2,,155,452000,,,,,5105 Fremont Hill,Portsmouth,00214,United States,New Hampshire,,,,, 64 | Feednation,feednation.com,feednation.com,Clayton Farr,TRUE,,Warehousing,495,,181000,,,(212) 8328987,2 Nevada Terrace,Brooklyn,11247,United States,New York,,,,, 65 | Fivebridge,fivebridge.com,fivebridge.com,Clayton Farr,,Tier 3,,950,277000,,,,,1314 Commercial Hill,Arlington,22234,United States,Virginia,,,,, 66 | Fivespan,fivespan.com,fivespan.com,Test User 2,,,,,,,1983,,,74 Ruskin Lane,Harrisburg,17105,United States,Pennsylvania,WebEngage,Totango,Weebly,Intercom,WebEngage;Totango;Weebly;Intercom; 67 | Flashdog,flashdog.com,flashdog.com,Test User 2,,,,665,,,,,,8 Burrows Pass,Jacksonville,32230,United States,Florida,,,,, 68 | Flashpoint,flashpoint.com,flashpoint.com,Test User 2,FALSE,,Entertainment,275,,,,,(505) 2830013,6857 Chive Hill,Albuquerque,87105,United States,New Mexico,,,,, 69 | Flashset,flashset.com,flashset.com,Test User 2,,Tier 3,,620,656000,,,FALSE,,97 Debs Street,Washington,20073,United States,District of Columbia,,,,, 70 | Flipopia,flipopia.com,flipopia.com,Test User 2,,Tier 2,,965,108000,,2003,,,24794 American Ash Point,Des Moines,50335,United States,Iowa,Wp Engine,Survey Monkey,Gravity Forms,Wp Engine,Wp Engine;Survey Monkey;Gravity Forms;Wp Engine; 71 | Gabspot,gabspot.com,gabspot.com,Clayton Farr,,,,95,,,2001,FALSE,,33 Messerschmidt Hill,Boise,83716,United States,Idaho,Mousestats,Facebook Like Button,Amazon Payments,Facebook Like Button,Mousestats;Facebook Like Button;Amazon Payments;Facebook Like Button; 72 | Gabtune,gabtune.com,gabtune.com,Test User 2,,,,865,,,,FALSE,,988 Bonner Way,Yakima,98907,United States,Washington,,,,, 73 | Gabtype,gabtype.com,gabtype.com,Clayton Farr,TRUE,Tier 1,Telecommunications,520,743000,,1998,,(239) 6003142,,"","","","",WebEngage,Smartlook,WebEngage,Volusion,WebEngage;Smartlook;WebEngage;Volusion; 74 | Gabvine,gabvine.com,gabvine.com,Test User 2,FALSE,Tier 2,Consumer Goods,,247000,,,TRUE,(502) 8890437,,"","","","",,,,, 75 | Gevee,gevee.com,gevee.com,Test User 2,,Tier 3,,,436000,,2008,FALSE,,,"","","","",Unix,Chartio,FusionCharts,Survey Monkey,Unix;Chartio;FusionCharts;Survey Monkey; 76 | Gigashots,gigashots.com,gigashots.com,Clayton Farr,TRUE,,Warehousing,,,,,FALSE,(617) 1550321,211 Pine View Center,Boston,02298,United States,Massachusetts,,,,, 77 | Innojam,innojam.com,innojam.com,Test User 2,,Tier 3,,995,170000,251000,,TRUE,,7363 Hermina Terrace,Brooklyn,11236,United States,New York,,,,, 78 | InnoZ,innoz.com,innoz.com,Test User 2,TRUE,Tier 3,Investment Banking,575,362000,,,,(225) 6294253,,"","","","",,,,, 79 | Izio,izio.com,izio.com,Test User 2,TRUE,,Computer Software,55,,,1987,TRUE,(408) 5024191,7808 Sloan Crossing,San Jose,95155,United States,California,Postmark,Express,Amazon Payments,ClickFunnels,Postmark;Express;Amazon Payments;ClickFunnels; 80 | Jabbersphere,jabbersphere.com,jabbersphere.com,Test User 2,FALSE,,Business Supplies and Equipment,630,,,1990,,(817) 2965963,72 Hazelcrest Point,Fort Worth,76129,United States,Texas,Optimonk,Nosto,Optimonk,WebEngage,Optimonk;Nosto;Optimonk;WebEngage; 81 | Jabbertype,jabbertype.com,jabbertype.com,Test User 2,,Tier 2,,850,863000,,,,,471 Hansons Terrace,Honolulu,96815,United States,Hawaii,,,,, 82 | Jaloo,jaloo.com,jaloo.com,Test User 2,,,,375,,,,FALSE,,8618 Briar Crest Avenue,Fort Collins,80525,United States,Colorado,,,,, 83 | Jamia,jamia.com,jamia.com,Clayton Farr,TRUE,Tier 1,Computer Software,550,152000,471000,,TRUE,(315) 4476962,292 Mandrake Pass,Syracuse,13210,United States,New York,,,,, 84 | Janyx,janyx.com,janyx.com,Test User 2,,Tier 1,,245,495000,,1997,,,43439 Evergreen Avenue,Pompano Beach,33069,United States,Florida,Dwolla,Survey Monkey,Amazon S3,Mousestats,Dwolla;Survey Monkey;Amazon S3;Mousestats; 85 | Jatri,jatri.com,jatri.com,Test User 2,,,,905,,258000,2000,FALSE,,5091 Pearson Trail,Albuquerque,87201,United States,New Mexico,FusionCharts,Fullstory,Mousestats,Klaviyo,FusionCharts;Fullstory;Mousestats;Klaviyo; 86 | Jaxnation,jaxnation.com,jaxnation.com,Clayton Farr,,Tier 2,,940,779000,,,TRUE,,,"","","","",,,,, 87 | Jaxworks,jaxworks.com,jaxworks.com,Test User 2,TRUE,Tier 3,Renewables & Environment,485,140000,,2004,TRUE,(216) 4554942,,"","","","",Knowtify,Gravity Forms,Knowtify,Fullstory,Knowtify;Gravity Forms;Knowtify;Fullstory; 88 | Jayo,jayo.com,jayo.com,Test User 2,,Tier 3,,500,777000,,,,,7 Ridgeway Hill,Los Angeles,90101,United States,California,,,,, 89 | Jazzy,jazzy.com,jazzy.com,Clayton Farr,,,,615,,,,,,,"","","","",,,,, 90 | Jetwire,jetwire.com,jetwire.com,Test User 2,,Tier 1,,575,366000,,,,,5 Hermina Place,Henderson,89074,United States,Nevada,,,,, 91 | JumpXS,jumpxs.com,jumpxs.com,Test User 2,FALSE,Tier 3,Accounting,920,408000,,,TRUE,(513) 4067043,3 Cordelia Plaza,Cincinnati,45223,United States,Ohio,,,,, 92 | Kaymbo,kaymbo.com,kaymbo.com,Test User 2,,Tier 3,,,237000,,1994,,,30664 Sloan Circle,Kansas City,64144,United States,Missouri,Intercom,Wp Engine,Postmark,Mouseflow,Intercom;Wp Engine;Postmark;Mouseflow; 93 | Kazu,kazu.com,kazu.com,Test User 2,FALSE,Tier 2,Computer Networking,955,519000,,2008,FALSE,(803) 5235936,64626 Leroy Parkway,Aiken,29805,United States,South Carolina,Adobe Dynamic Tag Management,Intercom,Gravity Forms,Adobe Dynamic Tag Management,Adobe Dynamic Tag Management;Intercom;Gravity Forms;Adobe Dynamic Tag Management; 94 | Kwilith,kwilith.com,kwilith.com,Test User 2,,,,,,,2006,,,,"","","","",Express,Authorizenet,Mouseflow,ClickFunnels,Express;Authorizenet;Mouseflow;ClickFunnels; 95 | Latz,latz.com,latz.com,Clayton Farr,,,,950,,,2009,FALSE,,33 Welch Lane,Sandy,84093,United States,Utah,Smartlook,Adobe Dynamic Tag Management,Chartio,RetailRocket,Smartlook;Adobe Dynamic Tag Management;Chartio;RetailRocket; 96 | Lazzy,lazzy.com,lazzy.com,Test User 2,TRUE,,Utilities,25,,,,TRUE,(334) 8454106,2 Bartelt Circle,Montgomery,36119,United States,Alabama,,,,, 97 | Leenti,leenti.com,leenti.com,Clayton Farr,TRUE,Tier 1,Computer Software,,679000,,,,(202) 7989747,479 Monica Point,Washington,20503,United States,District of Columbia,,,,, 98 | Linklinks,linklinks.com,linklinks.com,Clayton Farr,,,,,,,2004,FALSE,,006 Orin Center,Palo Alto,94302,United States,California,Intense Debate,Pardot,Dwolla,Knowtify,Intense Debate;Pardot;Dwolla;Knowtify; 99 | Linktype,linktype.com,linktype.com,Test User 2,,Tier 1,,,990000,,1994,,,011 Glendale Lane,San Antonio,78210,United States,Texas,Lead Dyno,Facebook Like Button,Mouseflow,Weebly,Lead Dyno;Facebook Like Button;Mouseflow;Weebly; 100 | Livetube,livetube.com,livetube.com,Clayton Farr,TRUE,Tier 3,Utilities,,226000,,,,(915) 7101621,,"","","","",,,,, 101 | MeejoMeemm,meejomeemm.com,meejomeemm.com,Test User 2,,,,530,,,1988,,,,"","","","",Optimonk,Klaviyo,Volusion,Drupal,Optimonk;Klaviyo;Volusion;Drupal; 102 | Meeveo,meeveo.com,meeveo.com,Test User 2,TRUE,Tier 3,Online Media,270,898000,,,,(786) 6767509,43607 Division Lane,Miami,33124,United States,Florida,,,,, 103 | Meezzy,meezzy.com,meezzy.com,Clayton Farr,,Tier 3,,40,199000,,,FALSE,,75 Kingsford Circle,Kalamazoo,49048,United States,Michigan,,,,, 104 | Miboo,miboo.com,miboo.com,Clayton Farr,,,,440,,,,FALSE,,0777 Novick Avenue,Ridgely,21684,United States,Maryland,,,,, 105 | Midel,midel.com,midel.com,Clayton Farr,FALSE,,Security and Investigations,,,,,FALSE,(972) 2213979,77415 New Castle Way,Dallas,75221,United States,Texas,,,,, 106 | Minyx,minyx.com,minyx.com,Clayton Farr,FALSE,Tier 2,Consumer Electronics,455,977000,,,,(601) 8166387,,"","","","",,,,, 107 | Mita,mita.com,mita.com,Clayton Farr,TRUE,Tier 3,Accounting,,961000,,,,(310) 8103564,048 Garrison Court,Los Angeles,90040,United States,California,,,,, 108 | Muxo,muxo.com,muxo.com,Test User 2,,Tier 3,,850,823000,,2004,TRUE,,,"","","","",Gravity Forms,Rackspace Email,Facebook Like Button,FusionCharts,Gravity Forms;Rackspace Email;Facebook Like Button;FusionCharts; 109 | Mybuzz,mybuzz.com,mybuzz.com,Test User 2,TRUE,Tier 3,Wireless,435,561000,251000,,,(651) 1598718,982 Holy Cross Parkway,Saint Paul,55146,United States,Minnesota,,,,, 110 | Mycat,mycat.com,mycat.com,Clayton Farr,,Tier 3,,,468000,,1993,,,73230 Green Ridge Place,Milwaukee,53205,United States,Wisconsin,FusionCharts,Survey Monkey,FusionCharts,Adobe Dynamic Tag Management,FusionCharts;Survey Monkey;FusionCharts;Adobe Dynamic Tag Management; 111 | Mydeo,mydeo.com,mydeo.com,Clayton Farr,,Tier 3,,195,667000,,2002,,,452 Fair Oaks Pass,Detroit,48295,United States,Michigan,Drupal,Klaviyo,Pardot,Marketo,Drupal;Klaviyo;Pardot;Marketo; 112 | Mydo,mydo.com,mydo.com,Clayton Farr,FALSE,Tier 3,Biotechnology,835,983000,35000,,FALSE,(202) 9264623,14584 Independence Alley,Washington,20470,United States,District of Columbia,,,,, 113 | Myworks,myworks.com,myworks.com,Test User 2,TRUE,Tier 3,Computer Hardware,310,350000,,2006,,(480) 6645379,64 Forest Run Center,Scottsdale,85271,United States,Arizona,Mousestats,Mousestats,Knowtify,Adobe Dynamic Tag Management,Mousestats;Mousestats;Knowtify;Adobe Dynamic Tag Management; 114 | Nlounge,nlounge.com,nlounge.com,Test User 2,TRUE,Tier 3,Computer Software,625,845000,,2002,,(615) 2032688,916 Leroy Street,Nashville,37228,United States,Tennessee,Chartio,Marketo,Elevio,Weebly,Chartio;Marketo;Elevio;Weebly; 115 | Npath,npath.com,npath.com,Test User 2,FALSE,,Machinery,625,,,1996,,(330) 1680091,74258 Hanover Trail,Akron,44321,United States,Ohio,Volusion,Facebook Social Plugins,RetailRocket,Amazon S3,Volusion;Facebook Social Plugins;RetailRocket;Amazon S3; 116 | Ntag,ntag.com,ntag.com,Test User 2,FALSE,Tier 3,Information Technology and Services,295,330000,,,TRUE,(614) 8277903,078 Kipling Place,Columbus,43226,United States,Ohio,,,,, 117 | Ntags,ntags.com,ntags.com,Clayton Farr,,Tier 2,,,693000,,,TRUE,,,"","","","",,,,, 118 | Oba,oba.com,oba.com,Clayton Farr,TRUE,Tier 2,Computer Networking,550,102000,,2002,TRUE,(831) 3762692,,"","","","",Postmark,Elevio,Google Tag Manager,Google Tag Manager,Postmark;Elevio;Google Tag Manager;Google Tag Manager; 119 | Omba,omba.com,omba.com,Test User 2,FALSE,Tier 2,Media Production,,935000,,,,(414) 3061657,,"","","","",,,,, 120 | Ooba,ooba.com,ooba.com,Test User 2,FALSE,Tier 2,Retail,,665000,,1996,,(207) 1231811,425 Marcy Lane,Portland,04109,United States,Maine,Weebly,Authorizenet,Mouseflow,Maxmind,Weebly;Authorizenet;Mouseflow;Maxmind; 121 | Oodoo,oodoo.com,oodoo.com,Test User 2,,,,,,,,TRUE,,,"","","","",,,,, 122 | Oyoloo,oyoloo.com,oyoloo.com,Clayton Farr,TRUE,Tier 3,Investment Banking,,959000,,2009,,(719) 7174209,5743 Green Terrace,Colorado Springs,80910,United States,Colorado,Survey Monkey,Google Tag Manager,ClickFunnels,Volusion,Survey Monkey;Google Tag Manager;ClickFunnels;Volusion; 123 | Oyope,oyope.com,oyope.com,Test User 2,,,,975,,,,,,4 Milwaukee Drive,Cleveland,44125,United States,Ohio,,,,, 124 | Oyoyo,oyoyo.com,oyoyo.com,Clayton Farr,,Tier 2,,0,581000,,2010,,,1042 Sloan Junction,San Jose,95128,United States,California,Maxmind,Amazon Payments,Chartio,Totango,Maxmind;Amazon Payments;Chartio;Totango; 125 | Photobug,photobug.com,photobug.com,Test User 2,FALSE,Tier 3,Business Supplies and Equipment,,749000,,1997,,(214) 1932294,,"","","","",Fullstory,Nosto,Intense Debate,Ultipro,Fullstory;Nosto;Intense Debate;Ultipro; 126 | Photofeed,photofeed.com,photofeed.com,Test User 2,FALSE,Tier 3,Warehousing,315,415000,,,,(970) 7924129,74406 3rd Pass,Greeley,80638,United States,Colorado,,,,, 127 | Photojam,photojam.com,photojam.com,Clayton Farr,,Tier 2,,,268000,,1994,,,5795 Clyde Gallagher Parkway,Nashville,37228,United States,Tennessee,RetailRocket,Gravity Forms,Mouseflow,Intercom,RetailRocket;Gravity Forms;Mouseflow;Intercom; 128 | Pixonyx,pixonyx.com,pixonyx.com,Clayton Farr,TRUE,,Warehousing,895,,,,,(251) 6978264,123 Sullivan Pass,Mobile,36641,United States,Alabama,,,,, 129 | Pixope,pixope.com,pixope.com,Clayton Farr,FALSE,Tier 2,Machinery,700,250000,,2006,TRUE,(304) 6257544,,"","","","",Lead Dyno,Gravity Forms,Facebook Social Plugins,Fullstory,Lead Dyno;Gravity Forms;Facebook Social Plugins;Fullstory; 130 | Plambee,plambee.com,plambee.com,Clayton Farr,,Tier 2,,515,608000,,,,,7606 Starling Parkway,Phoenix,85015,United States,Arizona,,,,, 131 | Quaxo,quaxo.com,quaxo.com,Clayton Farr,TRUE,Tier 2,Computer & Network Security,230,360000,,1995,,(512) 8783284,50267 Roth Street,Austin,78789,United States,Texas,Weebly,Unix,Eloqua,Unix,Weebly;Unix;Eloqua;Unix; 132 | Quimm,quimm.com,quimm.com,Clayton Farr,,Tier 1,,450,178000,,1994,,,4 American Ash Court,Springfield,45505,United States,Ohio,Elevio,Smartlook,Klaviyo,Authorizenet,Elevio;Smartlook;Klaviyo;Authorizenet; 133 | Quinu,quinu.com,quinu.com,Clayton Farr,,Tier 3,,135,779000,,,,,,"","","","",,,,, 134 | Realbridge,realbridge.com,realbridge.com,Test User 2,TRUE,Tier 2,Wholesale,325,202000,,,TRUE,(309) 9998359,1187 Clarendon Plaza,Peoria,61629,United States,Illinois,,,,, 135 | Realcube,realcube.com,realcube.com,Test User 2,FALSE,,Consumer Goods,770,,,,FALSE,(412) 8079216,,"","","","",,,,, 136 | Rhycero,rhycero.com,rhycero.com,Clayton Farr,FALSE,Tier 3,Machinery,880,452000,,,,(812) 6184330,,"","","","",,,,, 137 | Rhynyx,rhynyx.com,rhynyx.com,Test User 2,FALSE,Tier 2,Entertainment,,544000,,2011,TRUE,(585) 4710298,,"","","","",Heap,Drupal,Totango,Heap,Heap;Drupal;Totango;Heap; 138 | Rhyzio,rhyzio.com,rhyzio.com,Test User 2,,Tier 1,,20,949000,379000,2002,,,,"","","","",Fullstory,Chartio,Knowtify,Express,Fullstory;Chartio;Knowtify;Express; 139 | Roomm,roomm.com,roomm.com,Clayton Farr,TRUE,,Computer Hardware,660,,,,FALSE,(518) 9148098,26543 Village Green Hill,Albany,12262,United States,New York,,,,, 140 | Rooxo,rooxo.com,rooxo.com,Clayton Farr,TRUE,Tier 3,Business Supplies and Equipment,860,310000,,1996,FALSE,(210) 8166340,7 Crescent Oaks Street,San Antonio,78210,United States,Texas,Authorizenet,Amazon S3,Amazon S3,Heap,Authorizenet;Amazon S3;Amazon S3;Heap; 141 | Skaboo,skaboo.com,skaboo.com,Clayton Farr,FALSE,,Medical Devices,,,,1993,,(602) 9452628,1 Scofield Court,Mesa,85205,United States,Arizona,Unix,Dwolla,Volusion,Totango,Unix;Dwolla;Volusion;Totango; 142 | Skalith,skalith.com,skalith.com,Test User 2,,,,,,,,FALSE,,,"","","","",,,,, 143 | Skiba,skiba.com,skiba.com,Clayton Farr,TRUE,Tier 3,Utilities,410,678000,,1999,,(253) 4287399,42481 Bluestem Street,Tacoma,98464,United States,Washington,Totango,Wp Engine,Amazon S3,Survey Monkey,Totango;Wp Engine;Amazon S3;Survey Monkey; 144 | Skinix,skinix.com,skinix.com,Test User 2,,,,645,,,,TRUE,,9241 Center Avenue,Migrate,41905,United States,Kentucky,,,,, 145 | Skinte,skinte.com,skinte.com,Clayton Farr,FALSE,Tier 1,Online Media,880,634000,,1998,,(623) 8169991,849 Service Park,Scottsdale,85260,United States,Arizona,Drupal,Lead Dyno,Eloqua,Gravity Forms,Drupal;Lead Dyno;Eloqua;Gravity Forms; 146 | Skippad,skippad.com,skippad.com,Test User 2,,Tier 3,,,927000,386000,,,,,"","","","",,,,, 147 | Skyba,skyba.com,skyba.com,Test User 2,TRUE,Tier 3,Warehousing,715,345000,,1989,,(336) 6329839,6230 Oriole Park,Greensboro,27499,United States,North Carolina,Lead Dyno,Survey Monkey,Survey Monkey,Weebly,Lead Dyno;Survey Monkey;Survey Monkey;Weebly; 148 | Skyndu,skyndu.com,skyndu.com,Test User 2,TRUE,Tier 3,Utilities,270,503000,203000,,,(909) 9654554,,"","","","",,,,, 149 | Skynoodle,skynoodle.com,skynoodle.com,Test User 2,FALSE,Tier 2,Semiconductors,,385000,,,FALSE,(989) 3763017,61 Esch Center,Saginaw,48604,United States,Michigan,,,,, 150 | Skyvu,skyvu.com,skyvu.com,Test User 2,,,,250,,,,,,,"","","","",,,,, 151 | Tagtune,tagtune.com,tagtune.com,Test User 2,FALSE,Tier 1,Logistics and Supply Chain,485,139000,,,,(702) 5888312,,"","","","",,,,, 152 | Tazzy,tazzy.com,tazzy.com,Test User 2,FALSE,Tier 3,Entertainment,590,504000,,1988,,(813) 8775509,0201 Grasskamp Court,Tampa,33633,United States,Florida,Adobe Dynamic Tag Management,Maxmind,Intercom,Amazon Payments,Adobe Dynamic Tag Management;Maxmind;Intercom;Amazon Payments; 153 | Tekfly,tekfly.com,tekfly.com,Test User 2,,Tier 1,,260,268000,,,,,971 Manitowish Circle,Boca Raton,33499,United States,Florida,,,,, 154 | Thoughtblab,thoughtblab.com,thoughtblab.com,Clayton Farr,,Tier 2,,,106000,,,,,923 Westerfield Drive,Berkeley,94712,United States,California,,,,, 155 | Thoughtsphere,thoughtsphere.com,thoughtsphere.com,Clayton Farr,TRUE,,Computer Networking,665,,,2009,,(303) 9291157,,"","","","",Pardot,Marketo,FusionCharts,FusionCharts,Pardot;Marketo;FusionCharts;FusionCharts; 156 | Thoughtstorm,thoughtstorm.com,thoughtstorm.com,Test User 2,,Tier 3,,530,973000,,,,,9 Nova Court,Eugene,97405,United States,Oregon,,,,, 157 | Topdrive,topdrive.com,topdrive.com,Test User 2,TRUE,Tier 3,Security and Investigations,,166000,486000,,,(212) 7883452,91777 Farwell Way,New York City,10090,United States,New York,,,,, 158 | Topicstorm,topicstorm.com,topicstorm.com,Test User 2,TRUE,Tier 2,Utilities,960,978000,,1994,,(260) 4914030,54 Village Green Place,Fort Wayne,46805,United States,Indiana,Mousestats,Gravity Forms,Smartlook,Maxmind,Mousestats;Gravity Forms;Smartlook;Maxmind; 159 | Topiczoom,topiczoom.com,topiczoom.com,Test User 2,,Tier 1,,,589000,,1997,,,68676 Westport Hill,Indianapolis,46247,United States,Indiana,FusionCharts,Amazon S3,Mousestats,Adobe Dynamic Tag Management,FusionCharts;Amazon S3;Mousestats;Adobe Dynamic Tag Management; 160 | Trilith,trilith.com,trilith.com,Test User 2,FALSE,,Information Services,,,,,,(574) 7547759,18 Welch Way,South Bend,46634,United States,Indiana,,,,, 161 | Twimbo,twimbo.com,twimbo.com,Test User 2,,Tier 3,,,495000,,2010,TRUE,,9734 Rutledge Hill,New Orleans,70165,United States,Louisiana,Express,ClickFunnels,Klaviyo,Rackspace Email,Express;ClickFunnels;Klaviyo;Rackspace Email; 162 | Twimm,twimm.com,twimm.com,Clayton Farr,,Tier 3,,285,351000,401000,1987,,,9 Transport Alley,Houston,77206,United States,Texas,WebEngage,Ultipro,Totango,Google Tag Manager,WebEngage;Ultipro;Totango;Google Tag Manager; 163 | Twinder,twinder.com,twinder.com,Test User 2,,,,750,,,1993,,,86879 Carpenter Hill,New Haven,06520,United States,Connecticut,Mouseflow,Elevio,Ultipro,FusionCharts,Mouseflow;Elevio;Ultipro;FusionCharts; 164 | Twinte,twinte.com,twinte.com,Clayton Farr,TRUE,Tier 2,Machinery,560,730000,,,FALSE,(571) 6203135,,"","","","",,,,, 165 | Twitterlist,twitterlist.com,twitterlist.com,Test User 2,,Tier 1,,185,235000,,2004,FALSE,,2838 Eagle Crest Parkway,Dallas,75277,United States,Texas,Maxmind,Bloomreach,Elevio,Facebook Social Plugins,Maxmind;Bloomreach;Elevio;Facebook Social Plugins; 166 | Twitternation,twitternation.com,twitternation.com,Clayton Farr,,Tier 3,,,262000,,,,,0283 Susan Lane,Los Angeles,90065,United States,California,,,,, 167 | Vimbo,vimbo.com,vimbo.com,Clayton Farr,,Tier 3,,15,272000,,1989,FALSE,,60 Almo Plaza,Bloomington,61709,United States,Illinois,Mousestats,Amazon S3,Chartio,Lead Dyno,Mousestats;Amazon S3;Chartio;Lead Dyno; 168 | Vitz,vitz.com,vitz.com,Test User 2,FALSE,,Renewables & Environment,90,,,1994,,(704) 6473384,,"","","","",Facebook Like Button,Digital Ocean,Klaviyo,Drupal,Facebook Like Button;Digital Ocean;Klaviyo;Drupal; 169 | Viva,viva.com,viva.com,Clayton Farr,FALSE,Tier 2,Renewables & Environment,,248000,,,,(360) 7246036,,"","","","",,,,, 170 | Voolia,voolia.com,voolia.com,Clayton Farr,FALSE,,Computer Hardware,,,,,,(714) 2195787,,"","","","",,,,, 171 | Voonix,voonix.com,voonix.com,Clayton Farr,FALSE,,Mechanical or Industrial Engineering,,,,,,(402) 8058172,92 Eagle Crest Crossing,Omaha,68179,United States,Nebraska,,,,, 172 | Voonte,voonte.com,voonte.com,Test User 2,FALSE,,Information Technology and Services,,,,,TRUE,(480) 8119992,,"","","","",,,,, 173 | Wikibox,wikibox.com,wikibox.com,Clayton Farr,TRUE,Tier 3,Semiconductors,,889000,,,,(215) 4514366,94698 Park Meadow Lane,Philadelphia,19151,United States,Pennsylvania,,,,, 174 | Wordpedia,wordpedia.com,wordpedia.com,Test User 2,TRUE,Tier 3,Biotechnology,,240000,,,FALSE,(301) 8273789,93 Armistice Hill,Hyattsville,20784,United States,Maryland,,,,, 175 | Wordtune,wordtune.com,wordtune.com,Test User 2,,Tier 2,,475,786000,,2013,FALSE,,62 Eastlawn Drive,Honolulu,96845,United States,Hawaii,Nosto,Volusion,RetailRocket,Mousestats,Nosto;Volusion;RetailRocket;Mousestats; 176 | Wordware,wordware.com,wordware.com,Clayton Farr,,Tier 3,,190,399000,398000,1995,,,,"","","","",Ultipro,Nosto,Authorizenet,Nosto,Ultipro;Nosto;Authorizenet;Nosto; 177 | Yabox,yabox.com,yabox.com,Clayton Farr,TRUE,Tier 2,Machinery,225,804000,,,FALSE,(918) 8520690,,"","","","",,,,, 178 | Yadel,yadel.com,yadel.com,Clayton Farr,FALSE,Tier 1,Entertainment,110,785000,,,,(816) 9285996,,"","","","",,,,, 179 | Yakidoo,yakidoo.com,yakidoo.com,Clayton Farr,TRUE,,Consumer Goods,945,,,,,(518) 7171695,544 Lien Crossing,Albany,12247,United States,New York,,,,, 180 | Yakijo,yakijo.com,yakijo.com,Clayton Farr,FALSE,Tier 2,Entertainment,275,639000,,1997,FALSE,(716) 9022717,,"","","","",Volusion,Maxmind,Postmark,Maxmind,Volusion;Maxmind;Postmark;Maxmind; 181 | Yakitri,yakitri.com,yakitri.com,Test User 2,,Tier 3,,,644000,,2008,,,,"","","","",Intercom,Intense Debate,Google Tag Manager,Ultipro,Intercom;Intense Debate;Google Tag Manager;Ultipro; 182 | Yambee,yambee.com,yambee.com,Clayton Farr,FALSE,,Consumer Electronics,725,,,1999,,(904) 6768568,9598 Veith Way,Jacksonville,32220,United States,Florida,ClickFunnels,Knowtify,Klaviyo,Fullstory,ClickFunnels;Knowtify;Klaviyo;Fullstory; 183 | Yamia,yamia.com,yamia.com,Test User 2,TRUE,,Telecommunications,,,,2002,TRUE,(267) 4728174,1 Corben Pass,Levittown,19058,United States,Pennsylvania,Totango,Facebook Social Plugins,Survey Monkey,ClickFunnels,Totango;Facebook Social Plugins;Survey Monkey;ClickFunnels; 184 | Yata,yata.com,yata.com,Test User 2,,Tier 3,,220,964000,,,,,567 Lukken Park,Tulsa,74133,United States,Oklahoma,,,,, 185 | Yodel,yodel.com,yodel.com,Test User 2,TRUE,,Wholesale,680,,,1999,FALSE,(713) 4708438,,"","","","",Postmark,Pardot,ClickFunnels,Lucky Orange,Postmark;Pardot;ClickFunnels;Lucky Orange; 186 | Yodo,yodo.com,yodo.com,Clayton Farr,,,,200,,,,TRUE,,8093 Redwing Street,Monticello,55585,United States,Minnesota,,,,, 187 | Yodoo,yodoo.com,yodoo.com,Clayton Farr,FALSE,,Medical Devices,265,,,,TRUE,(253) 2864445,5509 Shoshone Junction,Tacoma,98464,United States,Washington,,,,, 188 | Yombu,yombu.com,yombu.com,Clayton Farr,FALSE,,Investment Banking,175,,200000,,,(314) 6122393,72673 Lukken Avenue,Saint Louis,63131,United States,Missouri,,,,, 189 | Yotz,yotz.com,yotz.com,Clayton Farr,,Tier 3,,220,699000,193000,1997,,,33100 Bobwhite Trail,Odessa,79764,United States,Texas,Drupal,Authorizenet,Nosto,Weebly,Drupal;Authorizenet;Nosto;Weebly; 190 | Youbridge,youbridge.com,youbridge.com,Test User 2,TRUE,Tier 3,Entertainment,800,492000,,2005,,(520) 7266298,,"","","","",Google Tag Manager,Amazon Payments,Amazon Payments,Rackspace Email,Google Tag Manager;Amazon Payments;Amazon Payments;Rackspace Email; 191 | Youspan,youspan.com,youspan.com,Test User 2,TRUE,Tier 3,Wireless,,948000,,,,(713) 7648403,3 Haas Place,Houston,77288,United States,Texas,,,,, 192 | Youtags,youtags.com,youtags.com,Clayton Farr,TRUE,Tier 3,Business Supplies and Equipment,435,761000,,2001,,(323) 9973141,7 Anthes Terrace,Pasadena,91103,United States,California,Pardot,Survey Monkey,Maxmind,Marketo,Pardot;Survey Monkey;Maxmind;Marketo; 193 | Yoveo,yoveo.com,yoveo.com,Test User 2,,Tier 3,,,179000,,,,,1 High Crossing Place,Sarasota,34238,United States,Florida,,,,, 194 | Yozio,yozio.com,yozio.com,Test User 2,TRUE,Tier 3,Telecommunications,,106000,,,TRUE,(815) 6335691,0657 Grayhawk Pass,Rockford,61105,United States,Illinois,,,,, 195 | Zava,zava.com,zava.com,Test User 2,,Tier 2,,,504000,,,,,,"","","","",,,,, 196 | Zoombox,zoombox.com,zoombox.com,Clayton Farr,FALSE,Tier 1,Investment Banking,340,763000,34000,,,(719) 3225629,,"","","","",,,,, 197 | Zoomcast,zoomcast.com,zoomcast.com,Clayton Farr,FALSE,,Business Supplies and Equipment,485,,,1997,,(312) 4924911,,"","","","",FusionCharts,Dwolla,Volusion,Ultipro,FusionCharts;Dwolla;Volusion;Ultipro; 198 | Zoonoodle,zoonoodle.com,zoonoodle.com,Test User 2,,Tier 2,,,669000,,,,,965 Loeprich Park,San Diego,92127,United States,California,,,,, 199 | Zooveo,zooveo.com,zooveo.com,Clayton Farr,,Tier 2,,590,291000,,2007,,,57 Kings Plaza,San Luis Obispo,93407,United States,California,Intercom,Intercom,Mousestats,Wp Engine,Intercom;Intercom;Mousestats;Wp Engine; 200 | Zoovu,zoovu.com,zoovu.com,Clayton Farr,,Tier 3,,470,147000,,1987,,,56308 Granby Junction,Houston,77055,United States,Texas,Facebook Like Button,Google Tag Manager,Postmark,Chartio,Facebook Like Button;Google Tag Manager;Postmark;Chartio; 201 | Zoozzy,zoozzy.com,zoozzy.com,Clayton Farr,,Tier 2,,585,366000,,1993,,,78 Manufacturers Circle,Alpharetta,30022,United States,Georgia,Knowtify,Facebook Like Button,Maxmind,Wp Engine,Knowtify;Facebook Like Button;Maxmind;Wp Engine; 202 | -------------------------------------------------------------------------------- /PBI/CRM/Demo/test-deals.csv: -------------------------------------------------------------------------------- 1 | _company_name,Company domain name,Pipeline,Deal owner,Create Date,Deal Name,Amount,Deal probability,Forecast probability,Deal Stage,_use_close_date,Close Date,Priority 2 | Blogtags,blogtags.com,Sales Pipeline,Test User 2,2021-08-25,Blogtags Deal (2021-08-25),2491,"","",Presentation scheduled,2021-09-12,"", 3 | Gigashots,gigashots.com,Sales Pipeline,Clayton Farr,2020-09-09,Gigashots Deal (2020-09-09),3644,"","",Closed lost,2020-09-28,"",Medium 4 | Kwilith,kwilith.com,Sales Pipeline,Clayton Farr,2021-09-23,Kwilith Deal (2021-09-23),3417,"","",Closed lost,2021-10-10,"",Low 5 | Yozio,yozio.com,Sales Pipeline,Test User 2,2021-11-20,Yozio Deal (2021-11-20),1464,"","",Appointment scheduled,2021-12-29,"",Medium 6 | Ntags,ntags.com,Sales Pipeline,Test User 2,2020-07-03,Ntags Deal (2020-07-03),1732,"","",Closed lost,2020-08-04,"",Low 7 | Yodel,yodel.com,Sales Pipeline,Test User 2,2020-04-22,Yodel Deal (2020-04-22),419,"","",Closed lost,2020-06-01,"", 8 | Flashdog,flashdog.com,Sales Pipeline,Test User 2,2020-09-23,Flashdog Deal (2020-09-23),4932,"","",Closed lost,2020-10-18,"", 9 | Gevee,gevee.com,Sales Pipeline,Test User 2,2020-06-11,Gevee Deal (2020-06-11),4597,"","",Closed lost,2020-07-22,"", 10 | Dabvine,dabvine.com,Sales Pipeline,Test User 2,2021-08-02,Dabvine Deal (2021-08-02),2325,"","",Decision maker bought-In,2021-08-19,"", 11 | Einti,einti.com,Sales Pipeline,Clayton Farr,2020-03-24,Einti Deal (2020-03-24),4858,"","",Qualified to buy,2020-05-04,"", 12 | Brainverse,brainverse.com,Sales Pipeline,Clayton Farr,2020-05-18,Brainverse Deal (2020-05-18),512,"","",Closed lost,2020-06-10,"", 13 | Edgetag,edgetag.com,Sales Pipeline,Test User 2,2020-11-18,Edgetag Deal (2020-11-18),125,"","",Closed lost,2020-12-30,"", 14 | Rhyzio,rhyzio.com,Sales Pipeline,Test User 2,2020-06-17,Rhyzio Deal (2020-06-17),648,"","",Closed lost,2020-07-12,"",Low 15 | Oodoo,oodoo.com,Sales Pipeline,Test User 2,2020-08-09,Oodoo Deal (2020-08-09),1683,"","",Closed lost,2020-09-12,"",Medium 16 | Zoozzy,zoozzy.com,Sales Pipeline,Test User 2,2020-05-28,Zoozzy Deal (2020-05-28),2983,"","",Presentation scheduled,2020-06-25,"",High 17 | Jetwire,jetwire.com,Sales Pipeline,Clayton Farr,2021-12-21,Jetwire Deal (2021-12-21),2964,"","",Closed won,2022-01-26,2022-01-26,High 18 | Npath,npath.com,Sales Pipeline,Clayton Farr,2021-08-21,Npath Deal (2021-08-21),4799,"","",Contract sent,2021-09-08,"", 19 | Brainsphere,brainsphere.com,Sales Pipeline,Clayton Farr,2020-09-23,Brainsphere Deal (2020-09-23),2408,"","",Closed lost,2020-10-22,"", 20 | Trilith,trilith.com,Sales Pipeline,Clayton Farr,2021-05-21,Trilith Deal (2021-05-21),2259,"","",Closed lost,2021-06-05,"", 21 | Jabbertype,jabbertype.com,Sales Pipeline,Test User 2,2021-05-06,Jabbertype Deal (2021-05-06),616,"","",Closed lost,2021-05-28,"", 22 | Avamm,avamm.com,Sales Pipeline,Clayton Farr,2020-10-08,Avamm Deal (2020-10-08),3503,"","",Closed lost,2020-10-26,"",High 23 | Flipopia,flipopia.com,Sales Pipeline,Clayton Farr,2021-07-25,Flipopia Deal (2021-07-25),434,"","",Closed lost,2021-08-24,"", 24 | Jayo,jayo.com,Sales Pipeline,Clayton Farr,2020-08-14,Jayo Deal (2020-08-14),2732,"","",Closed lost,2020-09-08,"", 25 | Eamia,eamia.com,Sales Pipeline,Clayton Farr,2021-02-13,Eamia Deal (2021-02-13),4581,"","",Closed won,2021-03-13,2021-03-13, 26 | Yoveo,yoveo.com,Sales Pipeline,Clayton Farr,2020-04-05,Yoveo Deal (2020-04-05),2067,"","",Closed lost,2020-05-10,"", 27 | Quaxo,quaxo.com,Sales Pipeline,Clayton Farr,2020-07-15,Quaxo Deal (2020-07-15),1632,"","",Closed won,2020-08-06,2020-08-06, 28 | Abata,abata.com,Sales Pipeline,Test User 2,2020-05-09,Abata Deal (2020-05-09),1240,"","",Closed lost,2020-06-15,"", 29 | Mydo,mydo.com,Sales Pipeline,Test User 2,2020-07-15,Mydo Deal (2020-07-15),1090,"","",Closed lost,2020-08-23,"",Low 30 | Zava,zava.com,Sales Pipeline,Clayton Farr,2021-01-10,Zava Deal (2021-01-10),700,"","",Closed won,2021-02-17,2021-02-17,Medium 31 | Yodel,yodel.com,Sales Pipeline,Clayton Farr,2021-04-15,Yodel Deal (2021-04-15),4685,"","",Closed lost,2021-05-18,"", 32 | Wordtune,wordtune.com,Sales Pipeline,Test User 2,2021-02-20,Wordtune Deal (2021-02-20),2475,"","",Contract sent,2021-03-23,"",Low 33 | Rhycero,rhycero.com,Sales Pipeline,Clayton Farr,2021-06-21,Rhycero Deal (2021-06-21),4247,"","",Closed lost,2021-07-10,"",Low 34 | Omba,omba.com,Sales Pipeline,Test User 2,2021-03-23,Omba Deal (2021-03-23),2787,"","",Closed lost,2021-04-21,"",High 35 | Abatz,abatz.com,Sales Pipeline,Clayton Farr,2020-11-12,Abatz Deal (2020-11-12),3071,"","",Closed won,2020-12-06,2020-12-06,Medium 36 | Kaymbo,kaymbo.com,Sales Pipeline,Test User 2,2021-08-08,Kaymbo Deal (2021-08-08),3348,"","",Closed lost,2021-09-22,"",Low 37 | Agivu,agivu.com,Sales Pipeline,Test User 2,2021-10-11,Agivu Deal (2021-10-11),1694,"","",Closed lost,2021-11-02,"",Low 38 | JumpXS,jumpxs.com,Sales Pipeline,Clayton Farr,2021-05-14,JumpXS Deal (2021-05-14),3286,"","",Closed lost,2021-06-03,"", 39 | Yakitri,yakitri.com,Sales Pipeline,Test User 2,2021-04-19,Yakitri Deal (2021-04-19),2566,"","",Closed lost,2021-05-07,"",Low 40 | Livetube,livetube.com,Sales Pipeline,Test User 2,2020-07-01,Livetube Deal (2020-07-01),1114,"","",Closed lost,2020-08-11,"",Low 41 | Rooxo,rooxo.com,Sales Pipeline,Clayton Farr,2021-11-17,Rooxo Deal (2021-11-17),4576,"","",Closed lost,2021-12-23,"",Medium 42 | Jatri,jatri.com,Sales Pipeline,Test User 2,2020-03-25,Jatri Deal (2020-03-25),2639,"","",Closed won,2020-04-22,2020-04-22, 43 | Mydo,mydo.com,Sales Pipeline,Clayton Farr,2021-04-09,Mydo Deal (2021-04-09),4450,"","",Closed lost,2021-05-24,"",Medium 44 | Skyvu,skyvu.com,Sales Pipeline,Clayton Farr,2020-11-12,Skyvu Deal (2020-11-12),4699,"","",Closed lost,2020-12-25,"", 45 | Fivebridge,fivebridge.com,Sales Pipeline,Test User 2,2021-07-30,Fivebridge Deal (2021-07-30),1653,"","",Closed lost,2021-08-28,"", 46 | BlogXS,blogxs.com,Sales Pipeline,Test User 2,2021-03-12,BlogXS Deal (2021-03-12),2963,"","",Closed won,2021-04-08,2021-04-08, 47 | Skalith,skalith.com,Sales Pipeline,Clayton Farr,2021-01-24,Skalith Deal (2021-01-24),982,"","",Closed won,2021-02-19,2021-02-19, 48 | Zoombox,zoombox.com,Sales Pipeline,Test User 2,2020-12-03,Zoombox Deal (2020-12-03),2822,"","",Decision maker bought-In,2020-12-27,"",Medium 49 | Jabbertype,jabbertype.com,Sales Pipeline,Test User 2,2020-01-30,Jabbertype Deal (2020-01-30),2081,"","",Closed won,2020-03-04,2020-03-04, 50 | Yambee,yambee.com,Sales Pipeline,Clayton Farr,2020-07-26,Yambee Deal (2020-07-26),3838,"","",Closed lost,2020-08-28,"", 51 | Blogspan,blogspan.com,Sales Pipeline,Test User 2,2020-03-28,Blogspan Deal (2020-03-28),1482,"","",Closed lost,2020-04-27,"",High 52 | Omba,omba.com,Sales Pipeline,Clayton Farr,2020-03-04,Omba Deal (2020-03-04),1369,"","",Closed lost,2020-03-20,"", 53 | Browsetype,browsetype.com,Sales Pipeline,Clayton Farr,2021-11-03,Browsetype Deal (2021-11-03),340,"","",Closed lost,2021-12-04,"",Medium 54 | Eidel,eidel.com,Sales Pipeline,Clayton Farr,2021-08-22,Eidel Deal (2021-08-22),4976,"","",Closed won,2021-09-25,2021-09-25,Medium 55 | Browsecat,browsecat.com,Sales Pipeline,Clayton Farr,2021-07-04,Browsecat Deal (2021-07-04),674,"","",Closed lost,2021-08-15,"", 56 | Skynoodle,skynoodle.com,Sales Pipeline,Test User 2,2020-05-23,Skynoodle Deal (2020-05-23),394,"","",Closed won,2020-06-13,2020-06-13, 57 | Mita,mita.com,Sales Pipeline,Test User 2,2021-09-04,Mita Deal (2021-09-04),4073,"","",Closed won,2021-09-24,2021-09-24,Low 58 | Zoombox,zoombox.com,Sales Pipeline,Test User 2,2021-02-05,Zoombox Deal (2021-02-05),2749,"","",Closed won,2021-03-19,2021-03-19, 59 | Abata,abata.com,Sales Pipeline,Clayton Farr,2020-05-18,Abata Deal (2020-05-18),1249,"","",Closed won,2020-06-11,2020-06-11, 60 | Skyvu,skyvu.com,Sales Pipeline,Clayton Farr,2021-02-08,Skyvu Deal (2021-02-08),1724,"","",Closed won,2021-03-09,2021-03-09, 61 | Abata,abata.com,Sales Pipeline,Clayton Farr,2021-11-24,Abata Deal (2021-11-24),3991,"","",Closed lost,2021-12-09,"", 62 | Jabbertype,jabbertype.com,Sales Pipeline,Clayton Farr,2021-09-10,Jabbertype Deal (2021-09-10),3373,"","",Closed lost,2021-10-04,"", 63 | Devshare,devshare.com,Sales Pipeline,Clayton Farr,2020-12-15,Devshare Deal (2020-12-15),183,"","",Closed won,2020-12-30,2020-12-30,Low 64 | Fivebridge,fivebridge.com,Sales Pipeline,Test User 2,2020-10-07,Fivebridge Deal (2020-10-07),2516,"","",Closed lost,2020-11-10,"", 65 | Yodo,yodo.com,Sales Pipeline,Clayton Farr,2020-08-10,Yodo Deal (2020-08-10),3035,"","",Contract sent,2020-09-03,"", 66 | Centizu,centizu.com,Sales Pipeline,Clayton Farr,2020-08-26,Centizu Deal (2020-08-26),3919,"","",Closed lost,2020-09-26,"", 67 | Eare,eare.com,Sales Pipeline,Clayton Farr,2020-02-24,Eare Deal (2020-02-24),1480,"","",Closed lost,2020-04-03,"", 68 | Yadel,yadel.com,Sales Pipeline,Test User 2,2021-11-30,Yadel Deal (2021-11-30),1124,"","",Closed won,2021-12-28,2021-12-28, 69 | Skiba,skiba.com,Sales Pipeline,Clayton Farr,2021-08-24,Skiba Deal (2021-08-24),3656,"","",Closed lost,2021-09-13,"", 70 | Wordtune,wordtune.com,Sales Pipeline,Clayton Farr,2021-01-12,Wordtune Deal (2021-01-12),3984,"","",Closed lost,2021-02-02,"", 71 | Wikibox,wikibox.com,Sales Pipeline,Clayton Farr,2021-07-06,Wikibox Deal (2021-07-06),3586,"","",Closed lost,2021-08-07,"", 72 | Topiczoom,topiczoom.com,Sales Pipeline,Clayton Farr,2021-07-11,Topiczoom Deal (2021-07-11),1691,"","",Qualified to buy,2021-08-02,"", 73 | Jatri,jatri.com,Sales Pipeline,Clayton Farr,2020-02-14,Jatri Deal (2020-02-14),3898,"","",Closed lost,2020-03-26,"", 74 | Einti,einti.com,Sales Pipeline,Test User 2,2020-05-30,Einti Deal (2020-05-30),2277,"","",Closed lost,2020-07-14,"", 75 | Voonix,voonix.com,Sales Pipeline,Test User 2,2020-01-31,Voonix Deal (2020-01-31),3505,"","",Closed lost,2020-02-16,"",High 76 | Twitterlist,twitterlist.com,Sales Pipeline,Test User 2,2020-05-05,Twitterlist Deal (2020-05-05),1954,"","",Closed lost,2020-05-21,"", 77 | Izio,izio.com,Sales Pipeline,Test User 2,2021-12-23,Izio Deal (2021-12-23),793,"","",Contract sent,2022-02-03,"", 78 | Oba,oba.com,Sales Pipeline,Test User 2,2020-02-26,Oba Deal (2020-02-26),1702,"","",Closed lost,2020-03-20,"", 79 | Skyndu,skyndu.com,Sales Pipeline,Test User 2,2020-06-27,Skyndu Deal (2020-06-27),3228,"","",Contract sent,2020-08-01,"", 80 | Wordware,wordware.com,Sales Pipeline,Test User 2,2021-01-29,Wordware Deal (2021-01-29),1723,"","",Closed lost,2021-03-03,"", 81 | Trilith,trilith.com,Sales Pipeline,Clayton Farr,2020-10-31,Trilith Deal (2020-10-31),3526,"","",Closed won,2020-11-28,2020-11-28,High 82 | Skiba,skiba.com,Sales Pipeline,Clayton Farr,2020-04-05,Skiba Deal (2020-04-05),4712,"","",Closed lost,2020-05-15,"",High 83 | Topiczoom,topiczoom.com,Sales Pipeline,Clayton Farr,2021-09-26,Topiczoom Deal (2021-09-26),4941,"","",Closed lost,2021-10-19,"",Low 84 | InnoZ,innoz.com,Sales Pipeline,Test User 2,2021-04-25,InnoZ Deal (2021-04-25),997,"","",Closed won,2021-06-02,2021-06-02,High 85 | Browseblab,browseblab.com,Sales Pipeline,Test User 2,2021-02-02,Browseblab Deal (2021-02-02),1124,"","",Closed lost,2021-03-02,"",High 86 | Wikibox,wikibox.com,Sales Pipeline,Test User 2,2020-06-09,Wikibox Deal (2020-06-09),1338,"","",Contract sent,2020-07-22,"", 87 | Plambee,plambee.com,Sales Pipeline,Test User 2,2021-01-08,Plambee Deal (2021-01-08),1439,"","",Presentation scheduled,2021-02-21,"",Low 88 | Tekfly,tekfly.com,Sales Pipeline,Test User 2,2021-02-12,Tekfly Deal (2021-02-12),512,"","",Closed lost,2021-03-24,"", 89 | Zava,zava.com,Sales Pipeline,Clayton Farr,2020-11-03,Zava Deal (2020-11-03),2191,"","",Closed lost,2020-11-30,"", 90 | Skinte,skinte.com,Sales Pipeline,Clayton Farr,2021-11-05,Skinte Deal (2021-11-05),721,"","",Appointment scheduled,2021-12-20,"", 91 | Npath,npath.com,Sales Pipeline,Test User 2,2020-10-06,Npath Deal (2020-10-06),2143,"","",Closed lost,2020-11-20,"",Medium 92 | Blognation,blognation.com,Sales Pipeline,Clayton Farr,2021-09-04,Blognation Deal (2021-09-04),3472,"","",Closed lost,2021-10-07,"", 93 | Skyvu,skyvu.com,Sales Pipeline,Clayton Farr,2020-09-13,Skyvu Deal (2020-09-13),4059,"","",Closed won,2020-10-25,2020-10-25, 94 | Skiba,skiba.com,Sales Pipeline,Clayton Farr,2020-07-09,Skiba Deal (2020-07-09),3950,"","",Closed won,2020-07-29,2020-07-29, 95 | Browsebug,browsebug.com,Sales Pipeline,Test User 2,2021-10-16,Browsebug Deal (2021-10-16),1342,"","",Closed lost,2021-11-13,"", 96 | Mydo,mydo.com,Sales Pipeline,Clayton Farr,2021-05-26,Mydo Deal (2021-05-26),3854,"","",Closed won,2021-06-27,2021-06-27, 97 | Zoovu,zoovu.com,Sales Pipeline,Test User 2,2020-03-27,Zoovu Deal (2020-03-27),875,"","",Qualified to buy,2020-04-12,"", 98 | Skyba,skyba.com,Sales Pipeline,Clayton Farr,2021-10-15,Skyba Deal (2021-10-15),1122,"","",Closed lost,2021-11-11,"", 99 | Yotz,yotz.com,Sales Pipeline,Clayton Farr,2021-12-06,Yotz Deal (2021-12-06),3808,"","",Closed lost,2022-01-04,"",High 100 | Aibox,aibox.com,Sales Pipeline,Clayton Farr,2021-07-28,Aibox Deal (2021-07-28),2131,"","",Closed lost,2021-08-18,"", 101 | Thoughtblab,thoughtblab.com,Sales Pipeline,Clayton Farr,2021-06-27,Thoughtblab Deal (2021-06-27),4795,"","",Closed won,2021-08-05,2021-08-05, 102 | Topiczoom,topiczoom.com,Sales Pipeline,Test User 2,2020-10-19,Topiczoom Deal (2020-10-19),1614,"","",Closed lost,2020-12-03,"",Medium 103 | Mydo,mydo.com,Sales Pipeline,Test User 2,2021-09-27,Mydo Deal (2021-09-27),249,"","",Appointment scheduled,2021-10-13,"",Medium 104 | Agivu,agivu.com,Sales Pipeline,Test User 2,2020-04-27,Agivu Deal (2020-04-27),4747,"","",Decision maker bought-In,2020-06-10,"",Medium 105 | Blogpad,blogpad.com,Sales Pipeline,Clayton Farr,2020-11-29,Blogpad Deal (2020-11-29),416,"","",Closed lost,2020-12-26,"",Medium 106 | Rooxo,rooxo.com,Sales Pipeline,Test User 2,2020-04-22,Rooxo Deal (2020-04-22),225,"","",Closed lost,2020-05-08,"", 107 | Wordtune,wordtune.com,Sales Pipeline,Test User 2,2020-12-12,Wordtune Deal (2020-12-12),3874,"","",Closed lost,2021-01-04,"", 108 | Edgeclub,edgeclub.com,Sales Pipeline,Clayton Farr,2020-10-24,Edgeclub Deal (2020-10-24),4353,"","",Closed lost,2020-11-19,"", 109 | Avamm,avamm.com,Sales Pipeline,Test User 2,2020-03-15,Avamm Deal (2020-03-15),1171,"","",Closed lost,2020-04-17,"",Low 110 | Yodoo,yodoo.com,Sales Pipeline,Clayton Farr,2020-10-28,Yodoo Deal (2020-10-28),3798,"","",Closed lost,2020-11-17,"", 111 | Yoveo,yoveo.com,Sales Pipeline,Clayton Farr,2020-10-16,Yoveo Deal (2020-10-16),3595,"","",Closed won,2020-11-20,2020-11-20, 112 | Skalith,skalith.com,Sales Pipeline,Test User 2,2020-06-05,Skalith Deal (2020-06-05),3146,"","",Appointment scheduled,2020-06-27,"",Medium 113 | Vimbo,vimbo.com,Sales Pipeline,Test User 2,2020-02-08,Vimbo Deal (2020-02-08),1288,"","",Closed won,2020-02-27,2020-02-27, 114 | Jaxworks,jaxworks.com,Sales Pipeline,Clayton Farr,2020-10-04,Jaxworks Deal (2020-10-04),4679,"","",Decision maker bought-In,2020-10-28,"", 115 | Fivespan,fivespan.com,Sales Pipeline,Clayton Farr,2020-03-25,Fivespan Deal (2020-03-25),3019,"","",Closed lost,2020-05-08,"", 116 | Cogidoo,cogidoo.com,Sales Pipeline,Test User 2,2020-03-30,Cogidoo Deal (2020-03-30),2530,"","",Closed lost,2020-04-22,"",High 117 | Agimba,agimba.com,Sales Pipeline,Test User 2,2021-06-12,Agimba Deal (2021-06-12),4485,"","",Closed lost,2021-06-28,"",Low 118 | Gevee,gevee.com,Sales Pipeline,Test User 2,2021-05-24,Gevee Deal (2021-05-24),1951,"","",Closed won,2021-06-18,2021-06-18, 119 | Lazzy,lazzy.com,Sales Pipeline,Clayton Farr,2020-05-22,Lazzy Deal (2020-05-22),3309,"","",Closed won,2020-07-04,2020-07-04,Medium 120 | Plambee,plambee.com,Sales Pipeline,Test User 2,2020-05-24,Plambee Deal (2020-05-24),1692,"","",Contract sent,2020-06-20,"", 121 | Mita,mita.com,Sales Pipeline,Test User 2,2021-07-13,Mita Deal (2021-07-13),4419,"","",Closed lost,2021-08-01,"", 122 | Fivespan,fivespan.com,Sales Pipeline,Test User 2,2021-06-06,Fivespan Deal (2021-06-06),477,"","",Closed lost,2021-07-09,"",Low 123 | Twitternation,twitternation.com,Sales Pipeline,Clayton Farr,2021-03-18,Twitternation Deal (2021-03-18),3652,"","",Closed lost,2021-04-19,"", 124 | Janyx,janyx.com,Sales Pipeline,Clayton Farr,2020-07-16,Janyx Deal (2020-07-16),2269,"","",Closed lost,2020-08-17,"", 125 | Izio,izio.com,Sales Pipeline,Clayton Farr,2020-09-25,Izio Deal (2020-09-25),2427,"","",Closed won,2020-10-28,2020-10-28, 126 | Voonte,voonte.com,Sales Pipeline,Clayton Farr,2021-09-16,Voonte Deal (2021-09-16),2560,"","",Appointment scheduled,2021-10-20,"",Low 127 | Yambee,yambee.com,Sales Pipeline,Test User 2,2020-07-02,Yambee Deal (2020-07-02),3336,"","",Closed won,2020-08-02,2020-08-02,Low 128 | Youtags,youtags.com,Sales Pipeline,Test User 2,2020-01-22,Youtags Deal (2020-01-22),3508,"","",Closed lost,2020-03-03,"", 129 | Wikibox,wikibox.com,Sales Pipeline,Clayton Farr,2020-04-23,Wikibox Deal (2020-04-23),2047,"","",Closed lost,2020-06-06,"",High 130 | Zooveo,zooveo.com,Sales Pipeline,Test User 2,2020-02-15,Zooveo Deal (2020-02-15),1644,"","",Closed won,2020-03-17,2020-03-17, 131 | Skyvu,skyvu.com,Sales Pipeline,Test User 2,2020-09-10,Skyvu Deal (2020-09-10),2471,"","",Qualified to buy,2020-10-09,"",Low 132 | Kazu,kazu.com,Sales Pipeline,Clayton Farr,2021-08-05,Kazu Deal (2021-08-05),2190,"","",Closed lost,2021-08-22,"", 133 | Nlounge,nlounge.com,Sales Pipeline,Clayton Farr,2020-07-10,Nlounge Deal (2020-07-10),1780,"","",Closed won,2020-07-30,2020-07-30, 134 | Skiba,skiba.com,Sales Pipeline,Clayton Farr,2021-11-25,Skiba Deal (2021-11-25),269,"","",Closed lost,2021-12-21,"", 135 | Eayo,eayo.com,Sales Pipeline,Test User 2,2021-03-04,Eayo Deal (2021-03-04),3800,"","",Closed lost,2021-03-23,"", 136 | Plambee,plambee.com,Sales Pipeline,Test User 2,2020-12-07,Plambee Deal (2020-12-07),2493,"","",Closed lost,2020-12-28,"", 137 | Eamia,eamia.com,Sales Pipeline,Test User 2,2021-11-16,Eamia Deal (2021-11-16),2639,"","",Closed lost,2021-12-06,"", 138 | Devshare,devshare.com,Sales Pipeline,Test User 2,2020-12-28,Devshare Deal (2020-12-28),4255,"","",Closed won,2021-01-12,2021-01-12, 139 | JumpXS,jumpxs.com,Sales Pipeline,Clayton Farr,2021-03-08,JumpXS Deal (2021-03-08),811,"","",Closed lost,2021-03-23,"", 140 | Jatri,jatri.com,Sales Pipeline,Test User 2,2020-10-16,Jatri Deal (2020-10-16),2203,"","",Closed lost,2020-11-10,"",Low 141 | Npath,npath.com,Sales Pipeline,Clayton Farr,2021-05-29,Npath Deal (2021-05-29),146,"","",Closed won,2021-06-23,2021-06-23, 142 | Wordpedia,wordpedia.com,Sales Pipeline,Clayton Farr,2021-10-16,Wordpedia Deal (2021-10-16),2954,"","",Closed lost,2021-11-21,"",Low 143 | Viva,viva.com,Sales Pipeline,Clayton Farr,2021-06-13,Viva Deal (2021-06-13),782,"","",Closed won,2021-07-16,2021-07-16, 144 | Feednation,feednation.com,Sales Pipeline,Clayton Farr,2020-09-22,Feednation Deal (2020-09-22),3074,"","",Closed won,2020-10-13,2020-10-13, 145 | Meezzy,meezzy.com,Sales Pipeline,Clayton Farr,2020-04-11,Meezzy Deal (2020-04-11),1678,"","",Closed won,2020-05-24,2020-05-24, 146 | Realcube,realcube.com,Sales Pipeline,Test User 2,2020-10-21,Realcube Deal (2020-10-21),1723,"","",Closed lost,2020-11-12,"", 147 | Jabbersphere,jabbersphere.com,Sales Pipeline,Clayton Farr,2020-07-28,Jabbersphere Deal (2020-07-28),2758,"","",Closed lost,2020-09-04,"", 148 | Browsebug,browsebug.com,Sales Pipeline,Clayton Farr,2021-04-12,Browsebug Deal (2021-04-12),1739,"","",Closed lost,2021-04-30,"", 149 | Jaxnation,jaxnation.com,Sales Pipeline,Clayton Farr,2021-11-02,Jaxnation Deal (2021-11-02),1132,"","",Closed won,2021-11-27,2021-11-27, 150 | Mydeo,mydeo.com,Sales Pipeline,Test User 2,2021-10-09,Mydeo Deal (2021-10-09),3483,"","",Closed lost,2021-11-09,"",Low 151 | Quimm,quimm.com,Sales Pipeline,Test User 2,2020-02-08,Quimm Deal (2020-02-08),3714,"","",Closed won,2020-02-24,2020-02-24, 152 | Agivu,agivu.com,Sales Pipeline,Clayton Farr,2021-08-24,Agivu Deal (2021-08-24),2790,"","",Closed won,2021-09-17,2021-09-17,High 153 | Vimbo,vimbo.com,Sales Pipeline,Test User 2,2021-04-10,Vimbo Deal (2021-04-10),1955,"","",Decision maker bought-In,2021-05-17,"", 154 | Dynabox,dynabox.com,Sales Pipeline,Clayton Farr,2020-11-13,Dynabox Deal (2020-11-13),1596,"","",Qualified to buy,2020-12-13,"", 155 | Browsecat,browsecat.com,Sales Pipeline,Test User 2,2021-02-21,Browsecat Deal (2021-02-21),3602,"","",Closed lost,2021-04-07,"", 156 | Kazu,kazu.com,Sales Pipeline,Test User 2,2020-12-16,Kazu Deal (2020-12-16),2246,"","",Closed lost,2021-01-30,"", 157 | Avamm,avamm.com,Sales Pipeline,Clayton Farr,2021-01-26,Avamm Deal (2021-01-26),116,"","",Appointment scheduled,2021-02-26,"",High 158 | Izio,izio.com,Sales Pipeline,Test User 2,2020-09-13,Izio Deal (2020-09-13),3715,"","",Closed lost,2020-10-07,"", 159 | Blogspan,blogspan.com,Sales Pipeline,Clayton Farr,2021-06-03,Blogspan Deal (2021-06-03),3210,"","",Closed lost,2021-07-17,"", 160 | Topicstorm,topicstorm.com,Sales Pipeline,Test User 2,2021-12-03,Topicstorm Deal (2021-12-03),4250,"","",Closed lost,2021-12-20,"", 161 | Agimba,agimba.com,Sales Pipeline,Clayton Farr,2020-04-18,Agimba Deal (2020-04-18),2813,"","",Closed lost,2020-05-22,"", 162 | Avaveo,avaveo.com,Sales Pipeline,Test User 2,2021-09-04,Avaveo Deal (2021-09-04),4253,"","",Closed won,2021-10-11,2021-10-11, 163 | Eire,eire.com,Sales Pipeline,Test User 2,2021-06-27,Eire Deal (2021-06-27),4411,"","",Closed lost,2021-07-13,"",Low 164 | Innojam,innojam.com,Sales Pipeline,Test User 2,2020-06-13,Innojam Deal (2020-06-13),2128,"","",Closed lost,2020-07-21,"",Low 165 | Jayo,jayo.com,Sales Pipeline,Clayton Farr,2020-09-15,Jayo Deal (2020-09-15),1560,"","",Closed lost,2020-10-22,"", 166 | Jabbersphere,jabbersphere.com,Sales Pipeline,Test User 2,2021-07-19,Jabbersphere Deal (2021-07-19),488,"","",Closed lost,2021-08-23,"", 167 | Bubbletube,bubbletube.com,Sales Pipeline,Clayton Farr,2021-10-30,Bubbletube Deal (2021-10-30),2104,"","",Closed won,2021-12-01,2021-12-01, 168 | Avamm,avamm.com,Sales Pipeline,Test User 2,2020-02-07,Avamm Deal (2020-02-07),331,"","",Closed lost,2020-03-20,"", 169 | Yakidoo,yakidoo.com,Sales Pipeline,Clayton Farr,2020-03-29,Yakidoo Deal (2020-03-29),1161,"","",Closed lost,2020-05-07,"", 170 | Browsebug,browsebug.com,Sales Pipeline,Test User 2,2020-06-20,Browsebug Deal (2020-06-20),3076,"","",Closed lost,2020-07-18,"", 171 | Trilith,trilith.com,Sales Pipeline,Test User 2,2021-09-11,Trilith Deal (2021-09-11),1470,"","",Closed lost,2021-10-11,"", 172 | Jaxnation,jaxnation.com,Sales Pipeline,Clayton Farr,2021-09-20,Jaxnation Deal (2021-09-20),2813,"","",Appointment scheduled,2021-10-05,"", 173 | Meezzy,meezzy.com,Sales Pipeline,Clayton Farr,2020-11-20,Meezzy Deal (2020-11-20),2428,"","",Closed lost,2020-12-17,"", 174 | Bubblebox,bubblebox.com,Sales Pipeline,Clayton Farr,2020-08-08,Bubblebox Deal (2020-08-08),2631,"","",Closed lost,2020-09-16,"",High 175 | Jetwire,jetwire.com,Sales Pipeline,Test User 2,2021-07-13,Jetwire Deal (2021-07-13),1809,"","",Appointment scheduled,2021-08-14,"",Medium 176 | Skippad,skippad.com,Sales Pipeline,Clayton Farr,2020-02-11,Skippad Deal (2020-02-11),3140,"","",Closed won,2020-03-05,2020-03-05,High 177 | Yoveo,yoveo.com,Sales Pipeline,Test User 2,2021-01-24,Yoveo Deal (2021-01-24),3249,"","",Closed won,2021-02-20,2021-02-20,Medium 178 | Centidel,centidel.com,Sales Pipeline,Clayton Farr,2021-06-18,Centidel Deal (2021-06-18),2647,"","",Closed won,2021-07-15,2021-07-15,High 179 | JumpXS,jumpxs.com,Sales Pipeline,Clayton Farr,2021-08-31,JumpXS Deal (2021-08-31),3564,"","",Closed lost,2021-10-09,"",Low 180 | Browsedrive,browsedrive.com,Sales Pipeline,Clayton Farr,2020-03-22,Browsedrive Deal (2020-03-22),2194,"","",Closed won,2020-04-18,2020-04-18, 181 | Yodel,yodel.com,Sales Pipeline,Clayton Farr,2020-07-04,Yodel Deal (2020-07-04),1609,"","",Closed won,2020-08-04,2020-08-04, 182 | Minyx,minyx.com,Sales Pipeline,Test User 2,2021-10-15,Minyx Deal (2021-10-15),1023,"","",Closed lost,2021-11-09,"", 183 | Zoozzy,zoozzy.com,Sales Pipeline,Test User 2,2021-12-04,Zoozzy Deal (2021-12-04),2825,"","",Closed lost,2022-01-16,"",Medium 184 | Abata,abata.com,Sales Pipeline,Test User 2,2020-09-10,Abata Deal (2020-09-10),2984,"","",Closed won,2020-10-06,2020-10-06, 185 | Wordpedia,wordpedia.com,Sales Pipeline,Clayton Farr,2020-01-18,Wordpedia Deal (2020-01-18),3010,"","",Closed lost,2020-02-28,"",High 186 | Skyvu,skyvu.com,Sales Pipeline,Clayton Farr,2020-04-23,Skyvu Deal (2020-04-23),263,"","",Closed lost,2020-06-06,"", 187 | Eare,eare.com,Sales Pipeline,Test User 2,2021-11-26,Eare Deal (2021-11-26),4442,"","",Decision maker bought-In,2021-12-16,"", 188 | Skaboo,skaboo.com,Sales Pipeline,Test User 2,2021-04-23,Skaboo Deal (2021-04-23),1074,"","",Closed lost,2021-06-06,"",Low 189 | Flashpoint,flashpoint.com,Sales Pipeline,Test User 2,2020-07-05,Flashpoint Deal (2020-07-05),4272,"","",Qualified to buy,2020-08-18,"",Medium 190 | Feednation,feednation.com,Sales Pipeline,Test User 2,2020-01-25,Feednation Deal (2020-01-25),835,"","",Closed lost,2020-03-01,"", 191 | Youspan,youspan.com,Sales Pipeline,Clayton Farr,2021-08-09,Youspan Deal (2021-08-09),3029,"","",Closed won,2021-09-10,2021-09-10, 192 | Miboo,miboo.com,Sales Pipeline,Clayton Farr,2021-05-18,Miboo Deal (2021-05-18),2474,"","",Closed won,2021-06-26,2021-06-26,Medium 193 | Zava,zava.com,Sales Pipeline,Clayton Farr,2021-10-07,Zava Deal (2021-10-07),1395,"","",Closed won,2021-11-18,2021-11-18,High 194 | Trilith,trilith.com,Sales Pipeline,Clayton Farr,2021-08-01,Trilith Deal (2021-08-01),1815,"","",Closed won,2021-08-31,2021-08-31, 195 | Dynabox,dynabox.com,Sales Pipeline,Clayton Farr,2021-05-01,Dynabox Deal (2021-05-01),379,"","",Closed lost,2021-06-15,"", 196 | Yombu,yombu.com,Sales Pipeline,Test User 2,2021-06-19,Yombu Deal (2021-06-19),2512,"","",Closed lost,2021-07-06,"",Medium 197 | Muxo,muxo.com,Sales Pipeline,Test User 2,2021-12-02,Muxo Deal (2021-12-02),1071,"","",Closed won,2022-01-03,2022-01-03,Low 198 | Brainsphere,brainsphere.com,Sales Pipeline,Clayton Farr,2021-12-21,Brainsphere Deal (2021-12-21),699,"","",Closed won,2022-01-23,2022-01-23,High 199 | Twitternation,twitternation.com,Sales Pipeline,Clayton Farr,2021-05-22,Twitternation Deal (2021-05-22),3270,"","",Closed lost,2021-06-17,"", 200 | Trilith,trilith.com,Sales Pipeline,Clayton Farr,2021-02-27,Trilith Deal (2021-02-27),3614,"","",Closed won,2021-03-24,2021-03-24, 201 | Thoughtsphere,thoughtsphere.com,Sales Pipeline,Clayton Farr,2020-11-18,Thoughtsphere Deal (2020-11-18),828,"","",Decision maker bought-In,2021-01-02,"",Low 202 | Meeveo,meeveo.com,Sales Pipeline,Test User 2,2020-01-25,Meeveo Deal (2020-01-25),686,"","",Closed lost,2020-03-03,"",Low 203 | Jayo,jayo.com,Sales Pipeline,Clayton Farr,2021-01-13,Jayo Deal (2021-01-13),502,"","",Closed lost,2021-02-22,"", 204 | Jaloo,jaloo.com,Sales Pipeline,Clayton Farr,2021-02-02,Jaloo Deal (2021-02-02),4309,"","",Closed won,2021-02-24,2021-02-24,Medium 205 | Cogilith,cogilith.com,Sales Pipeline,Test User 2,2021-12-01,Cogilith Deal (2021-12-01),1837,"","",Closed lost,2022-01-13,"", 206 | Kazu,kazu.com,Sales Pipeline,Test User 2,2020-09-26,Kazu Deal (2020-09-26),1868,"","",Closed lost,2020-11-01,"",Medium 207 | Jayo,jayo.com,Sales Pipeline,Test User 2,2021-03-09,Jayo Deal (2021-03-09),1023,"","",Closed lost,2021-04-13,"",Low 208 | Youbridge,youbridge.com,Sales Pipeline,Test User 2,2021-08-09,Youbridge Deal (2021-08-09),4917,"","",Closed lost,2021-09-02,"",Medium 209 | Eamia,eamia.com,Sales Pipeline,Clayton Farr,2021-06-26,Eamia Deal (2021-06-26),304,"","",Closed won,2021-08-07,2021-08-07, 210 | Muxo,muxo.com,Sales Pipeline,Clayton Farr,2020-10-09,Muxo Deal (2020-10-09),3492,"","",Closed lost,2020-10-27,"", 211 | Gabtune,gabtune.com,Sales Pipeline,Test User 2,2020-11-30,Gabtune Deal (2020-11-30),375,"","",Closed won,2020-12-18,2020-12-18,Medium 212 | Twitternation,twitternation.com,Sales Pipeline,Clayton Farr,2020-06-14,Twitternation Deal (2020-06-14),822,"","",Closed lost,2020-07-27,"",Low 213 | Gigashots,gigashots.com,Sales Pipeline,Test User 2,2021-10-15,Gigashots Deal (2021-10-15),4591,"","",Qualified to buy,2021-11-28,"",Low 214 | Twinte,twinte.com,Sales Pipeline,Clayton Farr,2020-01-27,Twinte Deal (2020-01-27),1629,"","",Closed lost,2020-02-28,"", 215 | Einti,einti.com,Sales Pipeline,Test User 2,2020-11-05,Einti Deal (2020-11-05),4048,"","",Closed lost,2020-12-07,"",Medium 216 | Camido,camido.com,Sales Pipeline,Clayton Farr,2020-01-16,Camido Deal (2020-01-16),4057,"","",Closed lost,2020-02-21,"",Low 217 | Gabspot,gabspot.com,Sales Pipeline,Test User 2,2020-03-10,Gabspot Deal (2020-03-10),2383,"","",Closed won,2020-04-09,2020-04-09,Low 218 | Muxo,muxo.com,Sales Pipeline,Clayton Farr,2020-06-18,Muxo Deal (2020-06-18),3122,"","",Closed won,2020-08-01,2020-08-01,Medium 219 | Viva,viva.com,Sales Pipeline,Test User 2,2021-10-06,Viva Deal (2021-10-06),586,"","",Closed won,2021-10-21,2021-10-21,Low 220 | Fivespan,fivespan.com,Sales Pipeline,Clayton Farr,2020-07-29,Fivespan Deal (2020-07-29),812,"","",Closed lost,2020-08-23,"", 221 | Wikibox,wikibox.com,Sales Pipeline,Test User 2,2020-01-20,Wikibox Deal (2020-01-20),2199,"","",Presentation scheduled,2020-02-10,"",Low 222 | Thoughtstorm,thoughtstorm.com,Sales Pipeline,Clayton Farr,2020-10-12,Thoughtstorm Deal (2020-10-12),3220,"","",Closed won,2020-10-31,2020-10-31,High 223 | Oyope,oyope.com,Sales Pipeline,Test User 2,2021-01-05,Oyope Deal (2021-01-05),4778,"","",Closed won,2021-02-10,2021-02-10, 224 | Meezzy,meezzy.com,Sales Pipeline,Test User 2,2020-11-27,Meezzy Deal (2020-11-27),3322,"","",Closed lost,2020-12-17,"",Low 225 | Chatterbridge,chatterbridge.com,Sales Pipeline,Test User 2,2021-04-23,Chatterbridge Deal (2021-04-23),3495,"","",Closed lost,2021-05-16,"", 226 | Mydo,mydo.com,Sales Pipeline,Clayton Farr,2021-06-08,Mydo Deal (2021-06-08),3015,"","",Closed won,2021-07-21,2021-07-21, 227 | Skyndu,skyndu.com,Sales Pipeline,Test User 2,2021-01-13,Skyndu Deal (2021-01-13),3562,"","",Closed won,2021-02-10,2021-02-10, 228 | Eayo,eayo.com,Sales Pipeline,Clayton Farr,2020-10-26,Eayo Deal (2020-10-26),1218,"","",Closed won,2020-11-15,2020-11-15, 229 | Trilith,trilith.com,Sales Pipeline,Test User 2,2020-11-12,Trilith Deal (2020-11-12),1961,"","",Closed lost,2020-12-26,"", 230 | Innojam,innojam.com,Sales Pipeline,Test User 2,2020-04-08,Innojam Deal (2020-04-08),359,"","",Closed lost,2020-05-07,"", 231 | Browsebug,browsebug.com,Sales Pipeline,Test User 2,2020-07-13,Browsebug Deal (2020-07-13),2362,"","",Closed lost,2020-07-30,"", 232 | Pixonyx,pixonyx.com,Sales Pipeline,Test User 2,2021-09-04,Pixonyx Deal (2021-09-04),4736,"","",Closed lost,2021-09-23,"", 233 | Topiczoom,topiczoom.com,Sales Pipeline,Test User 2,2021-10-08,Topiczoom Deal (2021-10-08),313,"","",Decision maker bought-In,2021-11-02,"",Low 234 | Eidel,eidel.com,Sales Pipeline,Clayton Farr,2021-04-28,Eidel Deal (2021-04-28),1451,"","",Closed won,2021-06-12,2021-06-12, 235 | Leenti,leenti.com,Sales Pipeline,Clayton Farr,2020-08-24,Leenti Deal (2020-08-24),2965,"","",Closed lost,2020-10-02,"", 236 | Cogidoo,cogidoo.com,Sales Pipeline,Clayton Farr,2020-06-05,Cogidoo Deal (2020-06-05),4167,"","",Appointment scheduled,2020-06-21,"",Medium 237 | Topiczoom,topiczoom.com,Sales Pipeline,Clayton Farr,2020-05-09,Topiczoom Deal (2020-05-09),206,"","",Closed won,2020-06-10,2020-06-10, 238 | Kaymbo,kaymbo.com,Sales Pipeline,Test User 2,2020-05-23,Kaymbo Deal (2020-05-23),1651,"","",Closed lost,2020-06-07,"",Low 239 | Ntags,ntags.com,Sales Pipeline,Test User 2,2021-05-12,Ntags Deal (2021-05-12),4809,"","",Closed lost,2021-06-04,"", 240 | Dabtype,dabtype.com,Sales Pipeline,Clayton Farr,2020-07-02,Dabtype Deal (2020-07-02),1573,"","",Closed won,2020-07-20,2020-07-20,Low 241 | Fatz,fatz.com,Sales Pipeline,Test User 2,2021-03-19,Fatz Deal (2021-03-19),1978,"","",Closed lost,2021-04-17,"", 242 | Voonix,voonix.com,Sales Pipeline,Test User 2,2020-03-10,Voonix Deal (2020-03-10),3645,"","",Closed won,2020-04-02,2020-04-02, 243 | Voonix,voonix.com,Sales Pipeline,Clayton Farr,2021-05-17,Voonix Deal (2021-05-17),4051,"","",Closed won,2021-06-07,2021-06-07, 244 | Skyndu,skyndu.com,Sales Pipeline,Test User 2,2021-05-28,Skyndu Deal (2021-05-28),831,"","",Closed won,2021-06-15,2021-06-15, 245 | Abatz,abatz.com,Sales Pipeline,Test User 2,2021-09-09,Abatz Deal (2021-09-09),2917,"","",Closed won,2021-10-20,2021-10-20, 246 | Kaymbo,kaymbo.com,Sales Pipeline,Clayton Farr,2020-10-18,Kaymbo Deal (2020-10-18),2492,"","",Closed won,2020-11-14,2020-11-14, 247 | Vimbo,vimbo.com,Sales Pipeline,Clayton Farr,2020-09-30,Vimbo Deal (2020-09-30),3373,"","",Closed lost,2020-10-17,"", 248 | Edgetag,edgetag.com,Sales Pipeline,Clayton Farr,2021-04-03,Edgetag Deal (2021-04-03),104,"","",Closed won,2021-04-25,2021-04-25, 249 | JumpXS,jumpxs.com,Sales Pipeline,Clayton Farr,2021-08-30,JumpXS Deal (2021-08-30),3909,"","",Closed won,2021-09-22,2021-09-22,Medium 250 | Gevee,gevee.com,Sales Pipeline,Clayton Farr,2021-11-12,Gevee Deal (2021-11-12),896,"","",Closed won,2021-12-01,2021-12-01,High 251 | Lazzy,lazzy.com,Sales Pipeline,Clayton Farr,2020-07-21,Lazzy Deal (2020-07-21),1637,"","",Closed lost,2020-08-08,"",Medium 252 | Browsebug,browsebug.com,Sales Pipeline,Test User 2,2021-09-08,Browsebug Deal (2021-09-08),215,"","",Contract sent,2021-10-22,"",Low 253 | Realbridge,realbridge.com,Sales Pipeline,Test User 2,2020-11-17,Realbridge Deal (2020-11-17),2175,"","",Closed lost,2020-12-21,"", 254 | Eayo,eayo.com,Sales Pipeline,Clayton Farr,2020-08-09,Eayo Deal (2020-08-09),727,"","",Closed lost,2020-09-22,"", 255 | Photofeed,photofeed.com,Sales Pipeline,Clayton Farr,2021-04-05,Photofeed Deal (2021-04-05),2410,"","",Closed lost,2021-05-11,"", 256 | Ntag,ntag.com,Sales Pipeline,Test User 2,2020-03-17,Ntag Deal (2020-03-17),4205,"","",Closed lost,2020-04-16,"", 257 | Aibox,aibox.com,Sales Pipeline,Test User 2,2020-09-01,Aibox Deal (2020-09-01),4811,"","",Closed lost,2020-09-18,"",High 258 | Yakijo,yakijo.com,Sales Pipeline,Test User 2,2021-01-02,Yakijo Deal (2021-01-02),653,"","",Contract sent,2021-02-14,"", 259 | MeejoMeemm,meejomeemm.com,Sales Pipeline,Test User 2,2021-04-23,MeejoMeemm Deal (2021-04-23),2313,"","",Closed won,2021-06-05,2021-06-05, 260 | Youtags,youtags.com,Sales Pipeline,Clayton Farr,2020-12-21,Youtags Deal (2020-12-21),4242,"","",Closed lost,2021-01-05,"", 261 | Photobug,photobug.com,Sales Pipeline,Clayton Farr,2021-10-22,Photobug Deal (2021-10-22),4640,"","",Closed lost,2021-11-25,"",Medium 262 | Zooveo,zooveo.com,Sales Pipeline,Test User 2,2021-10-10,Zooveo Deal (2021-10-10),935,"","",Contract sent,2021-11-05,"", 263 | Realcube,realcube.com,Sales Pipeline,Clayton Farr,2021-03-22,Realcube Deal (2021-03-22),123,"","",Closed won,2021-04-14,2021-04-14, 264 | Yodoo,yodoo.com,Sales Pipeline,Clayton Farr,2021-09-15,Yodoo Deal (2021-09-15),2367,"","",Closed won,2021-10-12,2021-10-12,High 265 | Browsedrive,browsedrive.com,Sales Pipeline,Test User 2,2021-01-25,Browsedrive Deal (2021-01-25),4824,"","",Closed lost,2021-02-12,"", 266 | Youtags,youtags.com,Sales Pipeline,Test User 2,2020-08-17,Youtags Deal (2020-08-17),1050,"","",Closed won,2020-09-18,2020-09-18,High 267 | Eamia,eamia.com,Sales Pipeline,Clayton Farr,2021-04-03,Eamia Deal (2021-04-03),4764,"","",Closed lost,2021-05-11,"", 268 | Roomm,roomm.com,Sales Pipeline,Test User 2,2021-01-12,Roomm Deal (2021-01-12),1752,"","",Closed lost,2021-01-31,"",Low 269 | Dynabox,dynabox.com,Sales Pipeline,Clayton Farr,2021-01-14,Dynabox Deal (2021-01-14),3084,"","",Closed lost,2021-02-19,"",Medium 270 | Skyndu,skyndu.com,Sales Pipeline,Clayton Farr,2021-08-23,Skyndu Deal (2021-08-23),412,"","",Closed lost,2021-10-02,"", 271 | BlogXS,blogxs.com,Sales Pipeline,Test User 2,2020-12-25,BlogXS Deal (2020-12-25),4069,"","",Closed won,2021-01-14,2021-01-14, 272 | Topiczoom,topiczoom.com,Sales Pipeline,Test User 2,2021-12-17,Topiczoom Deal (2021-12-17),1234,"","",Closed won,2022-01-29,2022-01-29, 273 | Izio,izio.com,Sales Pipeline,Clayton Farr,2021-10-14,Izio Deal (2021-10-14),2389,"","",Qualified to buy,2021-11-11,"",High 274 | Blogspan,blogspan.com,Sales Pipeline,Clayton Farr,2020-04-20,Blogspan Deal (2020-04-20),2985,"","",Closed won,2020-05-18,2020-05-18,Medium 275 | Dynabox,dynabox.com,Sales Pipeline,Clayton Farr,2021-11-04,Dynabox Deal (2021-11-04),288,"","",Closed lost,2021-12-02,"", 276 | Eire,eire.com,Sales Pipeline,Test User 2,2021-07-19,Eire Deal (2021-07-19),4403,"","",Closed won,2021-08-05,2021-08-05,Medium 277 | Yambee,yambee.com,Sales Pipeline,Test User 2,2020-05-10,Yambee Deal (2020-05-10),1724,"","",Closed lost,2020-06-10,"",High 278 | Skippad,skippad.com,Sales Pipeline,Clayton Farr,2020-04-12,Skippad Deal (2020-04-12),1301,"","",Closed lost,2020-05-05,"", 279 | Eare,eare.com,Sales Pipeline,Clayton Farr,2021-10-02,Eare Deal (2021-10-02),835,"","",Closed won,2021-11-13,2021-11-13, 280 | Dabvine,dabvine.com,Sales Pipeline,Test User 2,2021-12-06,Dabvine Deal (2021-12-06),3086,"","",Decision maker bought-In,2022-01-16,"", 281 | Yambee,yambee.com,Sales Pipeline,Clayton Farr,2021-04-04,Yambee Deal (2021-04-04),3500,"","",Closed lost,2021-05-03,"",Low 282 | Avaveo,avaveo.com,Sales Pipeline,Clayton Farr,2021-10-26,Avaveo Deal (2021-10-26),3340,"","",Decision maker bought-In,2021-11-21,"",Medium 283 | Blogtag,blogtag.com,Sales Pipeline,Clayton Farr,2020-06-16,Blogtag Deal (2020-06-16),729,"","",Closed won,2020-07-31,2020-07-31, 284 | Abatz,abatz.com,Sales Pipeline,Test User 2,2020-09-06,Abatz Deal (2020-09-06),2688,"","",Closed lost,2020-10-05,"", 285 | Yakidoo,yakidoo.com,Sales Pipeline,Clayton Farr,2020-07-24,Yakidoo Deal (2020-07-24),3676,"","",Closed lost,2020-08-25,"", 286 | Yakitri,yakitri.com,Sales Pipeline,Clayton Farr,2021-10-16,Yakitri Deal (2021-10-16),4085,"","",Closed won,2021-11-12,2021-11-12, 287 | JumpXS,jumpxs.com,Sales Pipeline,Test User 2,2020-06-05,JumpXS Deal (2020-06-05),2987,"","",Closed won,2020-06-30,2020-06-30, 288 | Cogilith,cogilith.com,Sales Pipeline,Clayton Farr,2021-09-05,Cogilith Deal (2021-09-05),3882,"","",Closed won,2021-09-20,2021-09-20, 289 | Youtags,youtags.com,Sales Pipeline,Clayton Farr,2021-09-13,Youtags Deal (2021-09-13),4689,"","",Qualified to buy,2021-10-12,"", 290 | Eazzy,eazzy.com,Sales Pipeline,Clayton Farr,2021-02-01,Eazzy Deal (2021-02-01),2088,"","",Closed lost,2021-02-27,"", 291 | Wordtune,wordtune.com,Sales Pipeline,Test User 2,2020-06-25,Wordtune Deal (2020-06-25),3301,"","",Closed lost,2020-07-12,"",Low 292 | Quinu,quinu.com,Sales Pipeline,Test User 2,2021-03-18,Quinu Deal (2021-03-18),769,"","",Contract sent,2021-04-23,"", 293 | Mydeo,mydeo.com,Sales Pipeline,Test User 2,2021-09-13,Mydeo Deal (2021-09-13),678,"","",Closed lost,2021-09-30,"", 294 | Edgetag,edgetag.com,Sales Pipeline,Clayton Farr,2020-11-09,Edgetag Deal (2020-11-09),1604,"","",Closed won,2020-12-08,2020-12-08, 295 | Oyope,oyope.com,Sales Pipeline,Test User 2,2020-07-26,Oyope Deal (2020-07-26),2112,"","",Closed lost,2020-09-08,"",High 296 | Mycat,mycat.com,Sales Pipeline,Clayton Farr,2021-05-17,Mycat Deal (2021-05-17),639,"","",Closed lost,2021-06-11,"",Low 297 | Yotz,yotz.com,Sales Pipeline,Clayton Farr,2020-02-23,Yotz Deal (2020-02-23),1705,"","",Closed lost,2020-03-31,"", 298 | Edgeclub,edgeclub.com,Sales Pipeline,Clayton Farr,2021-04-24,Edgeclub Deal (2021-04-24),3123,"","",Closed won,2021-05-19,2021-05-19,Medium 299 | Skinte,skinte.com,Sales Pipeline,Test User 2,2020-04-26,Skinte Deal (2020-04-26),1839,"","",Closed lost,2020-05-20,"", 300 | Skinte,skinte.com,Sales Pipeline,Clayton Farr,2020-03-09,Skinte Deal (2020-03-09),3185,"","",Closed won,2020-04-02,2020-04-02,Medium 301 | Devshare,devshare.com,Sales Pipeline,Clayton Farr,2021-07-30,Devshare Deal (2021-07-30),1176,"","",Decision maker bought-In,2021-08-28,"", 302 | Midel,midel.com,Sales Pipeline,Clayton Farr,2020-03-10,Midel Deal (2020-03-10),1830,"","",Closed won,2020-04-14,2020-04-14,Low 303 | Zava,zava.com,Sales Pipeline,Clayton Farr,2020-12-01,Zava Deal (2020-12-01),357,"","",Closed won,2021-01-10,2021-01-10, 304 | Miboo,miboo.com,Sales Pipeline,Clayton Farr,2021-12-21,Miboo Deal (2021-12-21),2847,"","",Contract sent,2022-01-25,"",High 305 | Bubblebox,bubblebox.com,Sales Pipeline,Clayton Farr,2021-06-17,Bubblebox Deal (2021-06-17),3074,"","",Closed lost,2021-07-08,"",Low 306 | Flipopia,flipopia.com,Sales Pipeline,Clayton Farr,2021-07-31,Flipopia Deal (2021-07-31),3424,"","",Closed won,2021-08-22,2021-08-22, 307 | Photofeed,photofeed.com,Sales Pipeline,Clayton Farr,2020-08-01,Photofeed Deal (2020-08-01),509,"","",Appointment scheduled,2020-09-04,"", 308 | Skyba,skyba.com,Sales Pipeline,Test User 2,2021-01-28,Skyba Deal (2021-01-28),3317,"","",Closed lost,2021-03-04,"", 309 | Quimm,quimm.com,Sales Pipeline,Clayton Farr,2021-07-28,Quimm Deal (2021-07-28),2180,"","",Closed won,2021-09-03,2021-09-03,Low 310 | Eamia,eamia.com,Sales Pipeline,Test User 2,2020-02-16,Eamia Deal (2020-02-16),3203,"","",Closed lost,2020-03-26,"", 311 | Jazzy,jazzy.com,Sales Pipeline,Test User 2,2020-02-07,Jazzy Deal (2020-02-07),568,"","",Closed lost,2020-03-12,"",Low 312 | Yabox,yabox.com,Sales Pipeline,Clayton Farr,2020-05-28,Yabox Deal (2020-05-28),2023,"","",Closed lost,2020-06-26,"", 313 | Kaymbo,kaymbo.com,Sales Pipeline,Clayton Farr,2020-09-11,Kaymbo Deal (2020-09-11),4542,"","",Closed won,2020-10-22,2020-10-22,Low 314 | Bubblemix,bubblemix.com,Sales Pipeline,Clayton Farr,2021-11-04,Bubblemix Deal (2021-11-04),3409,"","",Closed lost,2021-12-18,"", 315 | Topdrive,topdrive.com,Sales Pipeline,Test User 2,2021-07-28,Topdrive Deal (2021-07-28),3574,"","",Closed lost,2021-09-07,"", 316 | Fanoodle,fanoodle.com,Sales Pipeline,Test User 2,2020-12-27,Fanoodle Deal (2020-12-27),2636,"","",Closed lost,2021-02-02,"", 317 | Cogilith,cogilith.com,Sales Pipeline,Test User 2,2021-11-13,Cogilith Deal (2021-11-13),2418,"","",Closed lost,2021-12-01,"", 318 | Vimbo,vimbo.com,Sales Pipeline,Test User 2,2021-05-18,Vimbo Deal (2021-05-18),423,"","",Closed won,2021-06-10,2021-06-10, 319 | Skippad,skippad.com,Sales Pipeline,Clayton Farr,2021-11-03,Skippad Deal (2021-11-03),1768,"","",Closed lost,2021-11-28,"", 320 | Skiba,skiba.com,Sales Pipeline,Test User 2,2021-12-15,Skiba Deal (2021-12-15),1093,"","",Closed lost,2022-01-12,"", 321 | Trilith,trilith.com,Sales Pipeline,Test User 2,2020-04-26,Trilith Deal (2020-04-26),4493,"","",Closed lost,2020-06-02,"", 322 | Yozio,yozio.com,Sales Pipeline,Clayton Farr,2021-08-17,Yozio Deal (2021-08-17),2133,"","",Closed won,2021-09-23,2021-09-23,High 323 | Edgepulse,edgepulse.com,Sales Pipeline,Test User 2,2020-08-19,Edgepulse Deal (2020-08-19),2715,"","",Closed lost,2020-09-07,"", 324 | Rhynyx,rhynyx.com,Sales Pipeline,Test User 2,2021-11-05,Rhynyx Deal (2021-11-05),1989,"","",Closed won,2021-12-09,2021-12-09, 325 | Eire,eire.com,Sales Pipeline,Test User 2,2020-11-28,Eire Deal (2020-11-28),2031,"","",Contract sent,2020-12-18,"",Medium 326 | Zoomcast,zoomcast.com,Sales Pipeline,Clayton Farr,2020-02-20,Zoomcast Deal (2020-02-20),423,"","",Closed lost,2020-04-01,"", 327 | Blogpad,blogpad.com,Sales Pipeline,Clayton Farr,2021-02-09,Blogpad Deal (2021-02-09),3500,"","",Closed lost,2021-03-10,"", 328 | Avaveo,avaveo.com,Sales Pipeline,Test User 2,2020-04-30,Avaveo Deal (2020-04-30),3705,"","",Closed lost,2020-05-31,"",High 329 | Voolia,voolia.com,Sales Pipeline,Clayton Farr,2021-09-16,Voolia Deal (2021-09-16),2161,"","",Closed lost,2021-10-03,"",High 330 | Yombu,yombu.com,Sales Pipeline,Clayton Farr,2021-07-29,Yombu Deal (2021-07-29),2807,"","",Closed won,2021-09-06,2021-09-06,Medium 331 | Blogspan,blogspan.com,Sales Pipeline,Test User 2,2021-02-21,Blogspan Deal (2021-02-21),3618,"","",Closed won,2021-03-10,2021-03-10,Low 332 | Yakidoo,yakidoo.com,Sales Pipeline,Test User 2,2020-09-03,Yakidoo Deal (2020-09-03),4410,"","",Closed won,2020-09-27,2020-09-27, 333 | Browsetype,browsetype.com,Sales Pipeline,Test User 2,2021-11-09,Browsetype Deal (2021-11-09),3230,"","",Closed lost,2021-11-27,"", 334 | Bubblebox,bubblebox.com,Sales Pipeline,Test User 2,2021-08-21,Bubblebox Deal (2021-08-21),2285,"","",Closed lost,2021-09-20,"", 335 | Janyx,janyx.com,Sales Pipeline,Test User 2,2020-01-18,Janyx Deal (2020-01-18),2031,"","",Closed lost,2020-02-17,"", 336 | Dabvine,dabvine.com,Sales Pipeline,Test User 2,2020-02-13,Dabvine Deal (2020-02-13),1097,"","",Contract sent,2020-02-28,"", 337 | Quimm,quimm.com,Sales Pipeline,Clayton Farr,2021-09-28,Quimm Deal (2021-09-28),3967,"","",Closed lost,2021-10-18,"", 338 | Thoughtblab,thoughtblab.com,Sales Pipeline,Test User 2,2020-12-22,Thoughtblab Deal (2020-12-22),3370,"","",Qualified to buy,2021-01-28,"", 339 | Blogtags,blogtags.com,Sales Pipeline,Test User 2,2020-08-07,Blogtags Deal (2020-08-07),3619,"","",Closed lost,2020-09-16,"", 340 | Realcube,realcube.com,Sales Pipeline,Clayton Farr,2021-11-03,Realcube Deal (2021-11-03),1935,"","",Closed lost,2021-12-04,"", 341 | Zoombox,zoombox.com,Sales Pipeline,Clayton Farr,2020-08-09,Zoombox Deal (2020-08-09),3628,"","",Contract sent,2020-09-17,"",High 342 | Oodoo,oodoo.com,Sales Pipeline,Clayton Farr,2020-03-23,Oodoo Deal (2020-03-23),405,"","",Qualified to buy,2020-04-10,"",Low 343 | Skiba,skiba.com,Sales Pipeline,Test User 2,2021-08-31,Skiba Deal (2021-08-31),2570,"","",Closed won,2021-10-07,2021-10-07, 344 | Skippad,skippad.com,Sales Pipeline,Clayton Farr,2021-08-06,Skippad Deal (2021-08-06),2159,"","",Qualified to buy,2021-09-16,"",Low 345 | Yakitri,yakitri.com,Sales Pipeline,Test User 2,2020-05-25,Yakitri Deal (2020-05-25),208,"","",Closed lost,2020-06-19,"", 346 | Camido,camido.com,Sales Pipeline,Test User 2,2021-03-29,Camido Deal (2021-03-29),1591,"","",Closed lost,2021-04-22,"",High 347 | Gevee,gevee.com,Sales Pipeline,Test User 2,2021-01-02,Gevee Deal (2021-01-02),2868,"","",Closed lost,2021-02-04,"",High 348 | Photojam,photojam.com,Sales Pipeline,Clayton Farr,2020-03-04,Photojam Deal (2020-03-04),3387,"","",Closed lost,2020-04-01,"", 349 | Flashpoint,flashpoint.com,Sales Pipeline,Clayton Farr,2020-10-04,Flashpoint Deal (2020-10-04),1334,"","",Appointment scheduled,2020-10-25,"", 350 | Youtags,youtags.com,Sales Pipeline,Clayton Farr,2021-05-10,Youtags Deal (2021-05-10),2635,"","",Qualified to buy,2021-05-28,"",High 351 | Npath,npath.com,Sales Pipeline,Test User 2,2020-06-19,Npath Deal (2020-06-19),1311,"","",Closed lost,2020-07-30,"", 352 | Wordpedia,wordpedia.com,Sales Pipeline,Test User 2,2020-10-11,Wordpedia Deal (2020-10-11),787,"","",Closed lost,2020-11-03,"",High 353 | Digitube,digitube.com,Sales Pipeline,Test User 2,2021-12-17,Digitube Deal (2021-12-17),1595,"","",Closed won,2022-01-10,2022-01-10, 354 | Gabvine,gabvine.com,Sales Pipeline,Test User 2,2020-03-28,Gabvine Deal (2020-03-28),1512,"","",Closed lost,2020-04-15,"", 355 | Yoveo,yoveo.com,Sales Pipeline,Test User 2,2021-04-03,Yoveo Deal (2021-04-03),2935,"","",Closed won,2021-05-07,2021-05-07, 356 | Browsecat,browsecat.com,Sales Pipeline,Clayton Farr,2021-08-07,Browsecat Deal (2021-08-07),1338,"","",Closed won,2021-09-18,2021-09-18,Medium 357 | Viva,viva.com,Sales Pipeline,Clayton Farr,2021-01-10,Viva Deal (2021-01-10),3956,"","",Closed lost,2021-02-06,"",Low 358 | Brainverse,brainverse.com,Sales Pipeline,Clayton Farr,2020-06-14,Brainverse Deal (2020-06-14),1596,"","",Closed won,2020-07-25,2020-07-25, 359 | Jabbertype,jabbertype.com,Sales Pipeline,Test User 2,2021-03-16,Jabbertype Deal (2021-03-16),3515,"","",Closed lost,2021-04-19,"", 360 | Linklinks,linklinks.com,Sales Pipeline,Test User 2,2021-06-15,Linklinks Deal (2021-06-15),164,"","",Closed won,2021-07-10,2021-07-10, 361 | Voolia,voolia.com,Sales Pipeline,Clayton Farr,2020-05-08,Voolia Deal (2020-05-08),313,"","",Closed won,2020-06-15,2020-06-15,High 362 | Innojam,innojam.com,Sales Pipeline,Test User 2,2020-08-19,Innojam Deal (2020-08-19),2135,"","",Closed lost,2020-09-09,"",Low 363 | Cogidoo,cogidoo.com,Sales Pipeline,Clayton Farr,2021-07-17,Cogidoo Deal (2021-07-17),2159,"","",Closed lost,2021-08-26,"",Low 364 | Npath,npath.com,Sales Pipeline,Test User 2,2021-04-09,Npath Deal (2021-04-09),3080,"","",Closed lost,2021-05-03,"", 365 | Yodo,yodo.com,Sales Pipeline,Test User 2,2021-11-29,Yodo Deal (2021-11-29),3263,"","",Closed won,2022-01-11,2022-01-11, 366 | Bubblebox,bubblebox.com,Sales Pipeline,Clayton Farr,2020-01-26,Bubblebox Deal (2020-01-26),1173,"","",Closed lost,2020-02-24,"", 367 | Abata,abata.com,Sales Pipeline,Test User 2,2020-09-24,Abata Deal (2020-09-24),3624,"","",Closed won,2020-11-07,2020-11-07, 368 | Yodo,yodo.com,Sales Pipeline,Test User 2,2021-01-29,Yodo Deal (2021-01-29),3046,"","",Closed lost,2021-03-05,"", 369 | Voonte,voonte.com,Sales Pipeline,Test User 2,2020-10-10,Voonte Deal (2020-10-10),2879,"","",Closed lost,2020-11-09,"",Low 370 | Browseblab,browseblab.com,Sales Pipeline,Clayton Farr,2020-03-15,Browseblab Deal (2020-03-15),656,"","",Closed lost,2020-04-08,"",Medium 371 | Fivespan,fivespan.com,Sales Pipeline,Test User 2,2020-07-06,Fivespan Deal (2020-07-06),3642,"","",Closed won,2020-08-17,2020-08-17, 372 | Yakidoo,yakidoo.com,Sales Pipeline,Clayton Farr,2020-11-06,Yakidoo Deal (2020-11-06),1029,"","",Closed won,2020-11-26,2020-11-26, 373 | Gabtype,gabtype.com,Sales Pipeline,Test User 2,2020-03-08,Gabtype Deal (2020-03-08),1450,"","",Closed lost,2020-03-29,"", 374 | Centizu,centizu.com,Sales Pipeline,Test User 2,2021-05-24,Centizu Deal (2021-05-24),3172,"","",Closed lost,2021-06-23,"", 375 | Voolia,voolia.com,Sales Pipeline,Test User 2,2020-09-09,Voolia Deal (2020-09-09),2994,"","",Closed lost,2020-10-19,"", 376 | Yakidoo,yakidoo.com,Sales Pipeline,Clayton Farr,2021-11-10,Yakidoo Deal (2021-11-10),3136,"","",Closed won,2021-12-05,2021-12-05,High 377 | Wordpedia,wordpedia.com,Sales Pipeline,Clayton Farr,2020-07-27,Wordpedia Deal (2020-07-27),997,"","",Qualified to buy,2020-09-04,"", 378 | Midel,midel.com,Sales Pipeline,Test User 2,2021-05-28,Midel Deal (2021-05-28),214,"","",Closed won,2021-07-03,2021-07-03, 379 | Lazzy,lazzy.com,Sales Pipeline,Clayton Farr,2021-04-02,Lazzy Deal (2021-04-02),3410,"","",Closed lost,2021-05-16,"", 380 | Agimba,agimba.com,Sales Pipeline,Clayton Farr,2020-03-04,Agimba Deal (2020-03-04),3585,"","",Closed won,2020-04-18,2020-04-18,High 381 | Viva,viva.com,Sales Pipeline,Test User 2,2021-11-07,Viva Deal (2021-11-07),364,"","",Closed lost,2021-12-22,"",Low 382 | Wikibox,wikibox.com,Sales Pipeline,Clayton Farr,2021-12-02,Wikibox Deal (2021-12-02),1574,"","",Closed lost,2021-12-21,"", 383 | Skyvu,skyvu.com,Sales Pipeline,Test User 2,2021-04-29,Skyvu Deal (2021-04-29),4467,"","",Closed lost,2021-05-24,"",High 384 | Jabbertype,jabbertype.com,Sales Pipeline,Clayton Farr,2021-01-22,Jabbertype Deal (2021-01-22),2492,"","",Closed lost,2021-02-07,"", 385 | Mydeo,mydeo.com,Sales Pipeline,Clayton Farr,2020-08-17,Mydeo Deal (2020-08-17),4052,"","",Closed lost,2020-09-25,"", 386 | Yodel,yodel.com,Sales Pipeline,Test User 2,2021-01-09,Yodel Deal (2021-01-09),3084,"","",Closed lost,2021-02-11,"", 387 | Gabtune,gabtune.com,Sales Pipeline,Test User 2,2020-05-12,Gabtune Deal (2020-05-12),3215,"","",Closed won,2020-06-12,2020-06-12,High 388 | Cogibox,cogibox.com,Sales Pipeline,Test User 2,2021-12-12,Cogibox Deal (2021-12-12),4206,"","",Closed won,2022-01-21,2022-01-21, 389 | Blogspan,blogspan.com,Sales Pipeline,Test User 2,2021-08-29,Blogspan Deal (2021-08-29),487,"","",Closed lost,2021-10-10,"", 390 | Myworks,myworks.com,Sales Pipeline,Clayton Farr,2021-12-10,Myworks Deal (2021-12-10),3987,"","",Closed lost,2022-01-21,"", 391 | Gabtune,gabtune.com,Sales Pipeline,Test User 2,2020-03-21,Gabtune Deal (2020-03-21),2709,"","",Closed lost,2020-05-05,"",High 392 | Thoughtstorm,thoughtstorm.com,Sales Pipeline,Test User 2,2021-06-30,Thoughtstorm Deal (2021-06-30),398,"","",Closed lost,2021-08-03,"", 393 | Eamia,eamia.com,Sales Pipeline,Test User 2,2020-08-27,Eamia Deal (2020-08-27),570,"","",Closed lost,2020-09-18,"",Low 394 | Devcast,devcast.com,Sales Pipeline,Clayton Farr,2021-03-30,Devcast Deal (2021-03-30),1986,"","",Closed won,2021-05-10,2021-05-10,Medium 395 | Rhyzio,rhyzio.com,Sales Pipeline,Test User 2,2020-09-08,Rhyzio Deal (2020-09-08),3643,"","",Closed lost,2020-10-12,"", 396 | Twitternation,twitternation.com,Sales Pipeline,Test User 2,2020-07-12,Twitternation Deal (2020-07-12),238,"","",Closed lost,2020-08-10,"", 397 | Twinte,twinte.com,Sales Pipeline,Test User 2,2020-05-31,Twinte Deal (2020-05-31),3414,"","",Closed lost,2020-07-10,"", 398 | Npath,npath.com,Sales Pipeline,Test User 2,2020-08-03,Npath Deal (2020-08-03),409,"","",Closed won,2020-09-15,2020-09-15, 399 | Innojam,innojam.com,Sales Pipeline,Test User 2,2020-03-04,Innojam Deal (2020-03-04),1827,"","",Decision maker bought-In,2020-04-13,"", 400 | InnoZ,innoz.com,Sales Pipeline,Test User 2,2021-06-26,InnoZ Deal (2021-06-26),4810,"","",Closed lost,2021-07-23,"", 401 | Skynoodle,skynoodle.com,Sales Pipeline,Test User 2,2020-03-01,Skynoodle Deal (2020-03-01),121,"","",Closed lost,2020-03-18,"", 402 | Yambee,yambee.com,Sales Pipeline,Test User 2,2021-01-05,Yambee Deal (2021-01-05),4598,"","",Closed lost,2021-01-31,"",Medium 403 | Gabtune,gabtune.com,Sales Pipeline,Test User 2,2020-07-14,Gabtune Deal (2020-07-14),3788,"","",Closed lost,2020-08-02,"",Medium 404 | Ooba,ooba.com,Sales Pipeline,Clayton Farr,2020-11-10,Ooba Deal (2020-11-10),3328,"","",Closed lost,2020-12-19,"", 405 | Twitternation,twitternation.com,Sales Pipeline,Clayton Farr,2020-02-20,Twitternation Deal (2020-02-20),3684,"","",Closed lost,2020-04-02,"", 406 | Chatterbridge,chatterbridge.com,Sales Pipeline,Clayton Farr,2020-10-23,Chatterbridge Deal (2020-10-23),3977,"","",Closed lost,2020-11-11,"",High 407 | Npath,npath.com,Sales Pipeline,Test User 2,2021-12-07,Npath Deal (2021-12-07),4964,"","",Qualified to buy,2022-01-14,"", 408 | Kwilith,kwilith.com,Sales Pipeline,Clayton Farr,2020-04-18,Kwilith Deal (2020-04-18),479,"","",Closed won,2020-06-01,2020-06-01,Low 409 | Eazzy,eazzy.com,Sales Pipeline,Clayton Farr,2020-11-21,Eazzy Deal (2020-11-21),3565,"","",Closed lost,2020-12-16,"", 410 | Twinder,twinder.com,Sales Pipeline,Clayton Farr,2020-10-07,Twinder Deal (2020-10-07),2917,"","",Closed lost,2020-10-26,"", 411 | Dynabox,dynabox.com,Sales Pipeline,Test User 2,2020-02-08,Dynabox Deal (2020-02-08),3886,"","",Closed lost,2020-03-20,"", 412 | Cogibox,cogibox.com,Sales Pipeline,Test User 2,2020-07-17,Cogibox Deal (2020-07-17),591,"","",Closed won,2020-08-17,2020-08-17, 413 | Realcube,realcube.com,Sales Pipeline,Test User 2,2020-03-12,Realcube Deal (2020-03-12),4877,"","",Closed lost,2020-04-06,"",Low 414 | Flipopia,flipopia.com,Sales Pipeline,Test User 2,2021-07-25,Flipopia Deal (2021-07-25),3857,"","",Closed lost,2021-09-06,"",High 415 | Yodoo,yodoo.com,Sales Pipeline,Test User 2,2021-11-25,Yodoo Deal (2021-11-25),3233,"","",Qualified to buy,2021-12-21,"", 416 | Devify,devify.com,Sales Pipeline,Clayton Farr,2021-01-10,Devify Deal (2021-01-10),4965,"","",Closed lost,2021-01-28,"", 417 | Rhynyx,rhynyx.com,Sales Pipeline,Test User 2,2021-10-25,Rhynyx Deal (2021-10-25),2344,"","",Closed won,2021-11-29,2021-11-29, 418 | Zoovu,zoovu.com,Sales Pipeline,Test User 2,2021-04-10,Zoovu Deal (2021-04-10),3616,"","",Closed lost,2021-04-28,"",Medium 419 | Tazzy,tazzy.com,Sales Pipeline,Test User 2,2021-08-26,Tazzy Deal (2021-08-26),576,"","",Closed won,2021-09-10,2021-09-10,High 420 | Wordpedia,wordpedia.com,Sales Pipeline,Test User 2,2020-12-28,Wordpedia Deal (2020-12-28),1411,"","",Closed won,2021-01-20,2021-01-20,Low 421 | Eayo,eayo.com,Sales Pipeline,Clayton Farr,2020-08-04,Eayo Deal (2020-08-04),4755,"","",Appointment scheduled,2020-09-10,"",Low 422 | Blogtag,blogtag.com,Sales Pipeline,Clayton Farr,2020-11-24,Blogtag Deal (2020-11-24),1987,"","",Closed lost,2020-12-14,"", 423 | Yodoo,yodoo.com,Sales Pipeline,Clayton Farr,2021-02-07,Yodoo Deal (2021-02-07),1262,"","",Closed won,2021-03-24,2021-03-24,High 424 | Skalith,skalith.com,Sales Pipeline,Test User 2,2020-08-16,Skalith Deal (2020-08-16),1749,"","",Closed won,2020-09-01,2020-09-01, 425 | Minyx,minyx.com,Sales Pipeline,Clayton Farr,2021-12-13,Minyx Deal (2021-12-13),2598,"","",Closed won,2022-01-26,2022-01-26, 426 | Feedfire,feedfire.com,Sales Pipeline,Clayton Farr,2020-09-25,Feedfire Deal (2020-09-25),4045,"","",Closed lost,2020-10-15,"", 427 | Flashpoint,flashpoint.com,Sales Pipeline,Clayton Farr,2021-12-07,Flashpoint Deal (2021-12-07),1067,"","",Closed won,2022-01-03,2022-01-03, 428 | Zoovu,zoovu.com,Sales Pipeline,Test User 2,2021-08-21,Zoovu Deal (2021-08-21),205,"","",Closed lost,2021-09-29,"", 429 | Jaxnation,jaxnation.com,Sales Pipeline,Test User 2,2021-08-18,Jaxnation Deal (2021-08-18),3824,"","",Closed lost,2021-09-30,"",High 430 | Youtags,youtags.com,Sales Pipeline,Test User 2,2020-07-19,Youtags Deal (2020-07-19),362,"","",Decision maker bought-In,2020-08-24,"", 431 | Twitterlist,twitterlist.com,Sales Pipeline,Test User 2,2020-09-22,Twitterlist Deal (2020-09-22),965,"","",Closed lost,2020-10-10,"", 432 | JumpXS,jumpxs.com,Sales Pipeline,Clayton Farr,2020-03-12,JumpXS Deal (2020-03-12),2385,"","",Closed won,2020-04-16,2020-04-16, 433 | Devbug,devbug.com,Sales Pipeline,Test User 2,2021-09-23,Devbug Deal (2021-09-23),4718,"","",Closed won,2021-11-06,2021-11-06, 434 | Skippad,skippad.com,Sales Pipeline,Test User 2,2021-05-11,Skippad Deal (2021-05-11),575,"","",Appointment scheduled,2021-06-19,"",Low 435 | Yakitri,yakitri.com,Sales Pipeline,Clayton Farr,2020-12-20,Yakitri Deal (2020-12-20),4953,"","",Appointment scheduled,2021-01-20,"", 436 | Skippad,skippad.com,Sales Pipeline,Test User 2,2021-07-19,Skippad Deal (2021-07-19),1967,"","",Closed lost,2021-08-18,"", 437 | Eidel,eidel.com,Sales Pipeline,Clayton Farr,2021-10-06,Eidel Deal (2021-10-06),2499,"","",Closed lost,2021-10-29,"", 438 | Abata,abata.com,Sales Pipeline,Clayton Farr,2020-11-07,Abata Deal (2020-11-07),1318,"","",Qualified to buy,2020-11-27,"", 439 | Youspan,youspan.com,Sales Pipeline,Clayton Farr,2020-05-13,Youspan Deal (2020-05-13),3637,"","",Closed lost,2020-06-11,"",Medium 440 | Skinix,skinix.com,Sales Pipeline,Test User 2,2021-07-27,Skinix Deal (2021-07-27),312,"","",Closed lost,2021-09-06,"", 441 | Linklinks,linklinks.com,Sales Pipeline,Test User 2,2020-06-14,Linklinks Deal (2020-06-14),3261,"","",Closed lost,2020-06-30,"",High 442 | Zava,zava.com,Sales Pipeline,Clayton Farr,2020-07-09,Zava Deal (2020-07-09),1692,"","",Closed lost,2020-08-12,"",High 443 | Jatri,jatri.com,Sales Pipeline,Test User 2,2020-11-12,Jatri Deal (2020-11-12),3886,"","",Closed lost,2020-12-24,"", 444 | Janyx,janyx.com,Sales Pipeline,Clayton Farr,2020-04-04,Janyx Deal (2020-04-04),2843,"","",Closed lost,2020-05-07,"", 445 | Browseblab,browseblab.com,Sales Pipeline,Test User 2,2021-08-11,Browseblab Deal (2021-08-11),2603,"","",Closed lost,2021-09-06,"", 446 | DabZ,dabz.com,Sales Pipeline,Clayton Farr,2021-02-24,DabZ Deal (2021-02-24),4609,"","",Closed lost,2021-04-04,"", 447 | Photofeed,photofeed.com,Sales Pipeline,Test User 2,2020-08-18,Photofeed Deal (2020-08-18),3930,"","",Closed lost,2020-09-11,"",High 448 | Wikibox,wikibox.com,Sales Pipeline,Clayton Farr,2020-07-14,Wikibox Deal (2020-07-14),2559,"","",Closed lost,2020-07-30,"",Low 449 | Topdrive,topdrive.com,Sales Pipeline,Clayton Farr,2021-04-20,Topdrive Deal (2021-04-20),3552,"","",Closed lost,2021-05-10,"",Low 450 | Agivu,agivu.com,Sales Pipeline,Test User 2,2021-04-02,Agivu Deal (2021-04-02),2506,"","",Closed won,2021-05-06,2021-05-06,Medium 451 | Skaboo,skaboo.com,Sales Pipeline,Clayton Farr,2021-07-11,Skaboo Deal (2021-07-11),2980,"","",Decision maker bought-In,2021-08-18,"",Medium 452 | Photojam,photojam.com,Sales Pipeline,Clayton Farr,2020-05-03,Photojam Deal (2020-05-03),233,"","",Appointment scheduled,2020-06-11,"", 453 | InnoZ,innoz.com,Sales Pipeline,Clayton Farr,2021-10-01,InnoZ Deal (2021-10-01),3767,"","",Closed lost,2021-10-16,"", 454 | Yabox,yabox.com,Sales Pipeline,Clayton Farr,2020-07-14,Yabox Deal (2020-07-14),465,"","",Closed won,2020-08-10,2020-08-10,Medium 455 | Feedfish,feedfish.com,Sales Pipeline,Test User 2,2021-08-06,Feedfish Deal (2021-08-06),471,"","",Closed won,2021-08-21,2021-08-21,High 456 | Quinu,quinu.com,Sales Pipeline,Clayton Farr,2021-01-20,Quinu Deal (2021-01-20),2173,"","",Closed lost,2021-02-06,"", 457 | Latz,latz.com,Sales Pipeline,Clayton Farr,2021-08-26,Latz Deal (2021-08-26),4699,"","",Closed won,2021-09-25,2021-09-25,Medium 458 | Livetube,livetube.com,Sales Pipeline,Test User 2,2021-01-05,Livetube Deal (2021-01-05),1723,"","",Qualified to buy,2021-01-22,"",Medium 459 | Zoonoodle,zoonoodle.com,Sales Pipeline,Clayton Farr,2021-11-20,Zoonoodle Deal (2021-11-20),4810,"","",Closed lost,2022-01-01,"",High 460 | Thoughtsphere,thoughtsphere.com,Sales Pipeline,Clayton Farr,2021-09-06,Thoughtsphere Deal (2021-09-06),4239,"","",Closed won,2021-09-23,2021-09-23, 461 | Eazzy,eazzy.com,Sales Pipeline,Test User 2,2020-05-28,Eazzy Deal (2020-05-28),3504,"","",Closed lost,2020-06-27,"", 462 | Browsebug,browsebug.com,Sales Pipeline,Clayton Farr,2020-02-22,Browsebug Deal (2020-02-22),2317,"","",Closed won,2020-04-06,2020-04-06, 463 | Demivee,demivee.com,Sales Pipeline,Test User 2,2020-09-19,Demivee Deal (2020-09-19),3365,"","",Closed lost,2020-10-10,"",Medium 464 | Avavee,avavee.com,Sales Pipeline,Test User 2,2020-06-26,Avavee Deal (2020-06-26),4560,"","",Qualified to buy,2020-08-01,"", 465 | Mydo,mydo.com,Sales Pipeline,Test User 2,2021-05-19,Mydo Deal (2021-05-19),4505,"","",Closed lost,2021-06-13,"", 466 | Thoughtstorm,thoughtstorm.com,Sales Pipeline,Clayton Farr,2021-07-15,Thoughtstorm Deal (2021-07-15),3210,"","",Closed lost,2021-08-23,"", 467 | Photofeed,photofeed.com,Sales Pipeline,Clayton Farr,2021-02-07,Photofeed Deal (2021-02-07),1403,"","",Closed lost,2021-03-12,"", 468 | Oyope,oyope.com,Sales Pipeline,Clayton Farr,2020-07-22,Oyope Deal (2020-07-22),606,"","",Closed won,2020-08-28,2020-08-28,Medium 469 | Photofeed,photofeed.com,Sales Pipeline,Test User 2,2020-02-12,Photofeed Deal (2020-02-12),1517,"","",Closed won,2020-03-06,2020-03-06, 470 | Innojam,innojam.com,Sales Pipeline,Clayton Farr,2021-06-12,Innojam Deal (2021-06-12),4108,"","",Presentation scheduled,2021-06-28,"", 471 | Edgetag,edgetag.com,Sales Pipeline,Test User 2,2021-09-01,Edgetag Deal (2021-09-01),3286,"","",Closed lost,2021-09-16,"", 472 | Zava,zava.com,Sales Pipeline,Clayton Farr,2020-08-31,Zava Deal (2020-08-31),4542,"","",Closed lost,2020-09-15,"",Low 473 | Digitube,digitube.com,Sales Pipeline,Clayton Farr,2021-02-06,Digitube Deal (2021-02-06),1126,"","",Closed lost,2021-02-26,"",High 474 | Gigashots,gigashots.com,Sales Pipeline,Test User 2,2020-07-28,Gigashots Deal (2020-07-28),2848,"","",Closed lost,2020-08-21,"",Medium 475 | Thoughtblab,thoughtblab.com,Sales Pipeline,Clayton Farr,2021-08-23,Thoughtblab Deal (2021-08-23),3708,"","",Closed won,2021-09-29,2021-09-29, 476 | Oba,oba.com,Sales Pipeline,Test User 2,2021-12-13,Oba Deal (2021-12-13),1742,"","",Closed won,2022-01-07,2022-01-07, 477 | Livetube,livetube.com,Sales Pipeline,Test User 2,2020-11-07,Livetube Deal (2020-11-07),716,"","",Closed lost,2020-12-05,"", 478 | Yata,yata.com,Sales Pipeline,Clayton Farr,2020-11-24,Yata Deal (2020-11-24),1046,"","",Closed lost,2020-12-18,"",High 479 | Quinu,quinu.com,Sales Pipeline,Clayton Farr,2021-11-23,Quinu Deal (2021-11-23),4142,"","",Closed lost,2022-01-07,"",Low 480 | Browsecat,browsecat.com,Sales Pipeline,Clayton Farr,2020-06-02,Browsecat Deal (2020-06-02),4989,"","",Closed won,2020-06-19,2020-06-19,Medium 481 | Dabtype,dabtype.com,Sales Pipeline,Clayton Farr,2020-12-23,Dabtype Deal (2020-12-23),542,"","",Closed won,2021-01-21,2021-01-21,Medium 482 | Jazzy,jazzy.com,Sales Pipeline,Test User 2,2020-08-11,Jazzy Deal (2020-08-11),1021,"","",Closed lost,2020-09-24,"", 483 | Rooxo,rooxo.com,Sales Pipeline,Clayton Farr,2021-07-09,Rooxo Deal (2021-07-09),812,"","",Closed won,2021-07-30,2021-07-30, 484 | Skippad,skippad.com,Sales Pipeline,Clayton Farr,2021-01-29,Skippad Deal (2021-01-29),162,"","",Closed lost,2021-02-15,"", 485 | Flashdog,flashdog.com,Sales Pipeline,Test User 2,2020-06-19,Flashdog Deal (2020-06-19),3295,"","",Closed won,2020-07-10,2020-07-10, 486 | Jayo,jayo.com,Sales Pipeline,Test User 2,2020-06-30,Jayo Deal (2020-06-30),2987,"","",Closed lost,2020-07-18,"", 487 | Voonte,voonte.com,Sales Pipeline,Test User 2,2021-02-27,Voonte Deal (2021-02-27),368,"","",Qualified to buy,2021-04-06,"", 488 | Skynoodle,skynoodle.com,Sales Pipeline,Clayton Farr,2020-10-21,Skynoodle Deal (2020-10-21),1696,"","",Closed lost,2020-11-18,"", 489 | Avamm,avamm.com,Sales Pipeline,Clayton Farr,2020-02-08,Avamm Deal (2020-02-08),3835,"","",Closed lost,2020-03-09,"", 490 | Cogilith,cogilith.com,Sales Pipeline,Test User 2,2020-10-13,Cogilith Deal (2020-10-13),3460,"","",Closed won,2020-10-31,2020-10-31, 491 | Oyoloo,oyoloo.com,Sales Pipeline,Test User 2,2020-11-18,Oyoloo Deal (2020-11-18),2008,"","",Closed won,2020-12-10,2020-12-10, 492 | Meeveo,meeveo.com,Sales Pipeline,Test User 2,2021-08-23,Meeveo Deal (2021-08-23),4527,"","",Closed lost,2021-09-10,"", 493 | Devbug,devbug.com,Sales Pipeline,Test User 2,2021-07-16,Devbug Deal (2021-07-16),3235,"","",Closed won,2021-08-16,2021-08-16, 494 | Minyx,minyx.com,Sales Pipeline,Test User 2,2020-09-03,Minyx Deal (2020-09-03),688,"","",Closed lost,2020-09-23,"", 495 | Meezzy,meezzy.com,Sales Pipeline,Clayton Farr,2021-07-31,Meezzy Deal (2021-07-31),4879,"","",Closed lost,2021-09-06,"",High 496 | Photofeed,photofeed.com,Sales Pipeline,Clayton Farr,2020-10-25,Photofeed Deal (2020-10-25),4236,"","",Closed lost,2020-11-20,"", 497 | Mydo,mydo.com,Sales Pipeline,Clayton Farr,2020-09-26,Mydo Deal (2020-09-26),589,"","",Closed won,2020-10-12,2020-10-12,High 498 | Abata,abata.com,Sales Pipeline,Clayton Farr,2020-07-27,Abata Deal (2020-07-27),1984,"","",Contract sent,2020-08-20,"",High 499 | Yamia,yamia.com,Sales Pipeline,Clayton Farr,2021-04-06,Yamia Deal (2021-04-06),3014,"","",Closed lost,2021-05-10,"",Low 500 | Einti,einti.com,Sales Pipeline,Clayton Farr,2020-03-20,Einti Deal (2020-03-20),2470,"","",Closed won,2020-05-04,2020-05-04, 501 | Centidel,centidel.com,Sales Pipeline,Test User 2,2021-10-04,Centidel Deal (2021-10-04),3456,"","",Closed lost,2021-11-05,"", 502 | --------------------------------------------------------------------------------