├── .github ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE.md ├── ISSUE_TEMPLATE │ └── bug_report.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .vscode └── settings.json ├── Allfiles └── Labs │ ├── 14 │ ├── 14-Snippets.txt │ ├── 14-Solution-Sales Analysis.pbix │ ├── 14-Starter-Sales Analysis.pbix │ └── 14-create-dax.zip │ ├── 15 │ ├── 15-scalable-semantic-models.zip │ ├── Assets │ │ └── Snippets.txt │ ├── MySolution │ │ └── placeholder.txt │ ├── Solution │ │ └── 15-Solution-Sales Analysis.pbix │ └── Starter │ │ └── 15-Starter-Sales Analysis.pbix │ ├── 17 │ ├── MySolution │ │ └── placeholder.txt │ ├── Solution │ │ └── Sales Analysis - Enforce model security.pbix │ └── Starter │ │ └── Sales Analysis - Enforce model security.pbix │ ├── 00-Setup │ ├── DatabaseBackup │ │ ├── AdventureWorksDW-Fabric.bacpac │ │ ├── AdventureWorksDW-Fabric.zip │ │ ├── AdventureWorksDW2022.bacpac │ │ └── AdventureWorksDW2022.bak │ └── VM-Setup.txt │ ├── 01 │ ├── Assets │ │ └── 01-Snippets.txt │ ├── orders.zip │ └── orders │ │ ├── 2019.csv │ │ ├── 2020.csv │ │ └── 2021.csv │ ├── 08 │ └── Generate-Predictions.ipynb │ ├── 16b │ ├── 16-Starter-Sales Analysis.pbix │ ├── 16-reusable-assets.zip │ ├── AdventureWorksLogo.jpg │ ├── Solution │ │ ├── .gitignore │ │ ├── My new report.Report │ │ │ ├── .platform │ │ │ ├── StaticResources │ │ │ │ ├── RegisteredResources │ │ │ │ │ ├── Accessible_Orchid7929922611562745.json │ │ │ │ │ └── AdventureWorksLogo813982383943191.jpg │ │ │ │ └── SharedResources │ │ │ │ │ └── BaseThemes │ │ │ │ │ └── CY24SU10.json │ │ │ ├── definition.pbir │ │ │ ├── report.json │ │ │ └── semanticModelDiagramLayout.json │ │ ├── My new report.SemanticModel │ │ │ ├── .pbi │ │ │ │ ├── editorSettings.json │ │ │ │ └── unappliedChanges.json │ │ │ ├── .platform │ │ │ ├── definition.pbism │ │ │ ├── definition │ │ │ │ ├── cultures │ │ │ │ │ └── en-US.tmdl │ │ │ │ ├── database.tmdl │ │ │ │ ├── expressions.tmdl │ │ │ │ ├── model.tmdl │ │ │ │ ├── relationships.tmdl │ │ │ │ └── tables │ │ │ │ │ ├── Date.tmdl │ │ │ │ │ ├── Product.tmdl │ │ │ │ │ ├── Region.tmdl │ │ │ │ │ ├── Reseller.tmdl │ │ │ │ │ ├── Sales.tmdl │ │ │ │ │ ├── Salesperson (Performance).tmdl │ │ │ │ │ ├── Salesperson.tmdl │ │ │ │ │ ├── SalespersonRegion.tmdl │ │ │ │ │ ├── Targets.tmdl │ │ │ │ │ └── US Population.tmdl │ │ │ └── diagramLayout.json │ │ ├── My new report.pbip │ │ ├── My new report.pbit │ │ └── Regional-Sales.pbit │ ├── bike.png │ ├── data │ │ ├── region-north.csv │ │ └── region-south.csv │ └── us-resident-population-estimates-2020.html │ ├── 22a │ └── Store.csv │ ├── 22b │ ├── Solution │ │ ├── eurostat-notebook.ipynb │ │ └── projected-population.png │ └── Starter │ │ └── eurostat-notebook.ipynb │ ├── 22c │ └── create-dw.txt │ └── 22d │ └── create-dw.txt ├── Instructions └── Labs │ ├── 01-lakehouse.md │ ├── 02-analyze-spark.md │ ├── 03-delta-lake.md │ ├── 03b-medallion-lakehouse.md │ ├── 04-ingest-pipeline.md │ ├── 05-dataflows-gen2.md │ ├── 06-data-warehouse.md │ ├── 06a-data-warehouse-load.md │ ├── 06b-data-warehouse-query.md │ ├── 06c-monitor-data-warehouse.md │ ├── 06d-secure-data-warehouse.md │ ├── 07-real-time-Intelligence.md │ ├── 08-data-science-get-started.md │ ├── 08a-data-science-explore-data.md │ ├── 08b-data-science-preprocess-data-wrangler.md │ ├── 08c-data-science-train.md │ ├── 08d-data-science-batch.md │ ├── 09-real-time-analytics-eventstream.md │ ├── 11-data-activator.md │ ├── 12-query-data-in-kql-database.md │ ├── 13-real-time-dashboards.md │ ├── 14-create-dax-calculations.md │ ├── 15-design-scalable-semantic-models.md │ ├── 16-create-reusable-power-bi-assets.md │ ├── 17-enforce-model-security.md │ ├── 18-monitor-hub.md │ ├── 19-secure-data-access.md │ ├── 20-work-with-database.md │ ├── 20a-work-with-graphql.md │ ├── 21-implement-cicd.md │ ├── 22a-copilot-fabric-dataflow-gen2.md │ ├── 22b-copilot-fabric-notebooks.md │ ├── 22c-copilot-fabric-data-warehouse.md │ ├── 22d-copilot-fabric-data-agents.md │ └── Images │ ├── activator-build-object.png │ ├── activator-define-action.png │ ├── activator-destination.png │ ├── activator-event-details.png │ ├── activator-events-page.png │ ├── activator-home-screen.png │ ├── activator-new-rule.png │ ├── activator-reflex-home-screen.png │ ├── activator-rule-filters.png │ ├── activator-rule.png │ ├── activator-temperature-rule.png │ ├── add-data-destination.png │ ├── assign-role.png │ ├── auto-generated-load.png │ ├── bronze-files.png │ ├── built-in-chart.png │ ├── calculation-group-matrix.png │ ├── choose-columns.png │ ├── choose-data-source.png │ ├── cls-table.png │ ├── configure-activator.png │ ├── configure-destination.png │ ├── copilot-fabric-data-agent-create.png │ ├── copilot-fabric-data-agent-created.png │ ├── copilot-fabric-data-agent-new.png │ ├── copilot-fabric-data-agent-query-1-explanation.png │ ├── copilot-fabric-data-agent-question-1.png │ ├── copilot-fabric-data-agent-select-tables.png │ ├── copilot-fabric-data-warehouse-pane.png │ ├── copilot-fabric-data-warehouse-sql-1-results.png │ ├── copilot-fabric-data-warehouse-sql-1.png │ ├── copilot-fabric-data-warehouse-start.png │ ├── copilot-fabric-data-warehouse-view-error.png │ ├── copilot-fabric-dataflow-bom-character.png │ ├── copilot-fabric-dataflow-choose-destination.png │ ├── copilot-fabric-dataflow-copilot-pane.png │ ├── copilot-fabric-dataflow-copilot-xml-fields-expanded.png │ ├── copilot-fabric-dataflow-destination-column-mapping.png │ ├── copilot-fabric-dataflow-lakehouse-result.png │ ├── copilot-fabric-dataflow-modified-date-type-correct.png │ ├── copilot-fabric-dataflow-modified-date.png │ ├── copilot-fabric-dataflow-new.png │ ├── copilot-fabric-dataflow-plus-character.png │ ├── copilot-fabric-dataflow-power-query.png │ ├── copilot-fabric-dataflow-remove-columns.png │ ├── copilot-fabric-dataflow-result.png │ ├── copilot-fabric-dataflow-square-feet.png │ ├── copilot-fabric-dataflow-step.png │ ├── copilot-fabric-dataflow-store-size.png │ ├── copilot-fabric-dataflow-xml.png │ ├── copilot-fabric-notebook-create.png │ ├── copilot-fabric-notebook-europe.png │ ├── copilot-fabric-notebook-markdown.png │ ├── copilot-fabric-notebook-rename.png │ ├── copilot-fabric-notebook-replace-values.png │ ├── copilot-fabric-notebook-split-fields.png │ ├── copilot-fabric-notebook-step-1-created.png │ ├── copilot-fabric-notebook-step-2-lakehouse-attached.png │ ├── copilot-fabric-notebook-step-3-code-magic.png │ ├── copilot-fabric-notebook-step-4-lakehouse-refreshed.png │ ├── copilot-fabric-notebook-step-5-lakehouse-refreshed.png │ ├── copilot-fabric-notebook-step-6-copilot-pane.png │ ├── copilot-fabric-notebook-step-7-line-chart.png │ ├── copy-data-pipeline.png │ ├── create-dax-calculations-in-power-bi-desktop_date-table.png │ ├── create-dax-calculations-in-power-bi-desktop_image10.png │ ├── create-dax-calculations-in-power-bi-desktop_image11.png │ ├── create-dax-calculations-in-power-bi-desktop_image15.png │ ├── create-dax-calculations-in-power-bi-desktop_image16.png │ ├── create-dax-calculations-in-power-bi-desktop_image17.png │ ├── create-dax-calculations-in-power-bi-desktop_image18.png │ ├── create-dax-calculations-in-power-bi-desktop_image19.png │ ├── create-dax-calculations-in-power-bi-desktop_image21.png │ ├── create-dax-calculations-in-power-bi-desktop_image22.png │ ├── create-dax-calculations-in-power-bi-desktop_image23.png │ ├── create-dax-calculations-in-power-bi-desktop_image24.png │ ├── create-dax-calculations-in-power-bi-desktop_image26.png │ ├── create-dax-calculations-in-power-bi-desktop_image27.png │ ├── create-dax-calculations-in-power-bi-desktop_image28.png │ ├── create-dax-calculations-in-power-bi-desktop_image29.png │ ├── create-dax-calculations-in-power-bi-desktop_image30.png │ ├── create-dax-calculations-in-power-bi-desktop_image31.png │ ├── create-dax-calculations-in-power-bi-desktop_image35.png │ ├── create-dax-calculations-in-power-bi-desktop_image37.png │ ├── create-dax-calculations-in-power-bi-desktop_image39.png │ ├── create-dax-calculations-in-power-bi-desktop_image40.png │ ├── create-dax-calculations-in-power-bi-desktop_image41.png │ ├── create-dax-calculations-in-power-bi-desktop_image43.png │ ├── create-dax-calculations-in-power-bi-desktop_image45.png │ ├── create-dax-calculations-in-power-bi-desktop_image47.png │ ├── create-dax-calculations-in-power-bi-desktop_image48.png │ ├── create-dax-calculations-in-power-bi-desktop_image50.png │ ├── create-dax-calculations-in-power-bi-desktop_image9.png │ ├── create-eventhouse-sample.png │ ├── create-eventhouse.png │ ├── create-onelake-role.png │ ├── custom-column-added.png │ ├── custom-column.png │ ├── dashboard-base-query.png │ ├── dashboard-chart-map.png │ ├── dashboard-page-2.png │ ├── dashboard-parameters.png │ ├── data-destination-target.png │ ├── data-flow-query.png │ ├── data-science-metrics.png │ ├── data-wrangler-delete.png │ ├── data-wrangler-summary.png │ ├── dataflow-activity.png │ ├── dataflow-connection.png │ ├── dataflow-pipeline-succeeded.png │ ├── dataset-relationships.png │ ├── define-schema.png │ ├── delete-data-activity.png │ ├── delete-pipeline.png │ ├── delta-table-files.png │ ├── deployment-pipeline.png │ ├── design-scalable-semantic-models-image1.png │ ├── design-scalable-semantic-models-image10.png │ ├── design-scalable-semantic-models-image13.png │ ├── design-scalable-semantic-models-image14.png │ ├── design-scalable-semantic-models-image15.png │ ├── design-scalable-semantic-models-image16.png │ ├── design-scalable-semantic-models-image17.png │ ├── design-scalable-semantic-models-image18.png │ ├── design-scalable-semantic-models-image2.png │ ├── design-scalable-semantic-models-image3.png │ ├── design-scalable-semantic-models-image4.png │ ├── design-scalable-semantic-models-image5.png │ ├── destination-settings.png │ ├── dw-relationships.png │ ├── edit-dashboard-tile.png │ ├── empty-eventstream.png │ ├── enforce-model-security-image10.png │ ├── enforce-model-security-image11.png │ ├── enforce-model-security-image12.png │ ├── enforce-model-security-image13.png │ ├── enforce-model-security-image16.png │ ├── enforce-model-security-image19.png │ ├── enforce-model-security-image21.png │ ├── enforce-model-security-image22.png │ ├── enforce-model-security-image23.png │ ├── enforce-model-security-image24.png │ ├── enforce-model-security-image25.png │ ├── enforce-model-security-image26.png │ ├── enforce-model-security-image27.png │ ├── enforce-model-security-image28.png │ ├── enforce-model-security-image29.png │ ├── enforce-model-security-image30.png │ ├── enforce-model-security-image31.png │ ├── enforce-model-security-image32.png │ ├── enforce-model-security-image33.png │ ├── enforce-model-security-image34.png │ ├── enforce-model-security-image35.png │ ├── enforce-model-security-image36.png │ ├── enforce-model-security-image37.png │ ├── enforce-model-security-image38.png │ ├── enforce-model-security-image39.png │ ├── enforce-model-security-image40.png │ ├── enforce-model-security-image43.png │ ├── enforce-model-security-image44.png │ ├── enforce-model-security-image45.png │ ├── enforce-model-security-image46.png │ ├── enforce-model-security-image47.png │ ├── enforce-model-security-image48.png │ ├── enforce-model-security-image49.png │ ├── enforce-model-security-image50.png │ ├── enforce-model-security-image51.png │ ├── enforce-model-security-image52.png │ ├── enforce-model-security-image53.png │ ├── enforce-model-security-image54.png │ ├── enforce-model-security-image55.png │ ├── enforce-model-security-image56.png │ ├── enforce-model-security-image57.png │ ├── enforce-model-security-image58.png │ ├── enforce-model-security-image59.png │ ├── enforce-model-security-image60.png │ ├── enforce-model-security-image61.png │ ├── enforce-model-security-image62.png │ ├── enforce-model-security-image63.png │ ├── enforce-model-security-image64.png │ ├── enforce-model-security-image65.png │ ├── enforce-model-security-image66.png │ ├── enforce-model-security-image67.png │ ├── enforce-model-security-image68.png │ ├── enforce-model-security-image69.png │ ├── enforce-model-security-image70.png │ ├── enforce-model-security-image71.png │ ├── enforce-model-security-image72.png │ ├── enforce-model-security-image73.png │ ├── enforce-model-security-image74.png │ ├── enforce-model-security-image76.png │ ├── enforce-model-security-image8.png │ ├── enforce-model-security-image9.png │ ├── eventhouse-with-table.png │ ├── eventstream-add-aggregates.png │ ├── eventstream-destination.png │ ├── explorer-notebook-view.png │ ├── export-template.png │ ├── field-parameters-bar-chart-final.png │ ├── field-parameters-bar-chart-start.png │ ├── grant-deny-table.png │ ├── grant-people-access-window.png │ ├── grant-warehouse-access.png │ ├── group-by-table.png │ ├── historical-runs.png │ ├── kql-database-event-processing-before-ingestion.png │ ├── kql-group-query.png │ ├── kql-query.png │ ├── kql-stock-query.png │ ├── kql-table.png │ ├── kql-take-100-query.png │ ├── lab-pipeline-compare.png │ ├── lakehouse-destination.png │ ├── lakehouse-explorer.png │ ├── lakehouse-manage-permissions.png │ ├── lakehouse-metadata-only-access.png │ ├── lakehouse-table-access.png │ ├── load-spark.png │ ├── loaded-table.png │ ├── manage-onelake-roles.png │ ├── manage-parameter.png │ ├── masked-table.png │ ├── matrix-parameters-selected.png │ ├── model-dw.png │ ├── monitor-columns.png │ ├── monitor-dataflow.png │ ├── monitor-filter.png │ ├── monitor-notebook.png │ ├── name-eventstream.png │ ├── name-notebook-markdown.png │ ├── new-dashboard.png │ ├── new-data-access-role.png │ ├── new-data-flow.png │ ├── new-data-warehouse2.png │ ├── new-dataflow.png │ ├── new-empty-data-warehouse.png │ ├── new-empty-workspace.png │ ├── new-lakehouse.png │ ├── new-notebook.png │ ├── new-pipeline.png │ ├── new-sample-lakehouse.png │ ├── new-sample-warehouse.png │ ├── new-stock-stream.png │ ├── new-workspace.png │ ├── notebook-output.png │ ├── notebook.png │ ├── onelake-catalog.png │ ├── parquet-files.png │ ├── partitioned-data.png │ ├── pbid-dataflow-connectors.png │ ├── pipeline-run.png │ ├── pipeline.png │ ├── power-bi-customize-theme-fonts.png │ ├── power-bi-donut-table-default.png │ ├── power-bi-enable-tmdl.png │ ├── power-bi-icon-donut-table-custom.png │ ├── power-bi-lineage-view.png │ ├── power-bi-measure-details.png │ ├── power-bi-navigator-html.png │ ├── power-bi-new-relationship-us-population.png │ ├── power-bi-sales-per-capita-table.png │ ├── power-bi-save-file-types.png │ ├── power-bi-theme-blade.png │ ├── power-query.png │ ├── products-schema.png │ ├── products-table.png │ ├── real-time-hub.png │ ├── real-time-intelligence-eventstream-sourced.png │ ├── relationship-table-final.png │ ├── report-template-example.png │ ├── report-template-opened.png │ ├── rls-table.png │ ├── sales-file-upload.png │ ├── sales-notebook-rename.png │ ├── sales-query.png │ ├── salesorder-table.png │ ├── sample-data-warehouse.png │ ├── save-as-pbit.png │ ├── select-activator-stream.png │ ├── select-region-sales-parameter.png │ ├── spark-sql-dataframe.png │ ├── sql-database-sample.png │ ├── sql-endpoint-item.png │ ├── sql-query.png │ ├── sql-select.png │ ├── stock-dashboard-chart.png │ ├── stock-dashboard-table.png │ ├── stream-data-preview.png │ ├── stream-table-with-windows.png │ ├── table-preview.png │ ├── table-year-total-sales.png │ ├── tile-bar-chart.png │ ├── tile-table.png │ ├── total-sales-sql.png │ ├── unmasked-table.png │ ├── upload-products.png │ ├── uploaded-files.png │ ├── uploaded-sales-file.png │ ├── visual-query-merge.png │ ├── visual-query-preview.png │ ├── visual-query-results.png │ ├── visual-query.png │ ├── work-with-model-relationships-image52.png │ ├── work-with-model-relationships-image53.png │ ├── workspace-access.png │ ├── workspace-settings.png │ └── workspace-viewer-view.png ├── LICENSE ├── _build.yml ├── _config.yml ├── index.md ├── readme.md └── sales-notebook-rename.png /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | Instructions/Labs/09-real-time-analytics-eventstream.md 3 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /Allfiles/Labs/00-Setup/DatabaseBackup/AdventureWorksDW-Fabric.bacpac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Allfiles/Labs/00-Setup/DatabaseBackup/AdventureWorksDW-Fabric.bacpac -------------------------------------------------------------------------------- /Allfiles/Labs/00-Setup/DatabaseBackup/AdventureWorksDW-Fabric.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Allfiles/Labs/00-Setup/DatabaseBackup/AdventureWorksDW-Fabric.zip -------------------------------------------------------------------------------- /Allfiles/Labs/00-Setup/DatabaseBackup/AdventureWorksDW2022.bacpac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Allfiles/Labs/00-Setup/DatabaseBackup/AdventureWorksDW2022.bacpac -------------------------------------------------------------------------------- /Allfiles/Labs/00-Setup/DatabaseBackup/AdventureWorksDW2022.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Allfiles/Labs/00-Setup/DatabaseBackup/AdventureWorksDW2022.bak -------------------------------------------------------------------------------- /Allfiles/Labs/00-Setup/VM-Setup.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Allfiles/Labs/00-Setup/VM-Setup.txt -------------------------------------------------------------------------------- /Allfiles/Labs/01/Assets/01-Snippets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Allfiles/Labs/01/Assets/01-Snippets.txt -------------------------------------------------------------------------------- /Allfiles/Labs/01/orders.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Allfiles/Labs/01/orders.zip -------------------------------------------------------------------------------- /Allfiles/Labs/01/orders/2019.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Allfiles/Labs/01/orders/2019.csv -------------------------------------------------------------------------------- /Allfiles/Labs/01/orders/2020.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Allfiles/Labs/01/orders/2020.csv -------------------------------------------------------------------------------- /Allfiles/Labs/01/orders/2021.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Allfiles/Labs/01/orders/2021.csv -------------------------------------------------------------------------------- /Allfiles/Labs/08/Generate-Predictions.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Allfiles/Labs/08/Generate-Predictions.ipynb -------------------------------------------------------------------------------- /Allfiles/Labs/14/14-Snippets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Allfiles/Labs/14/14-Snippets.txt -------------------------------------------------------------------------------- /Allfiles/Labs/14/14-Solution-Sales Analysis.pbix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Allfiles/Labs/14/14-Solution-Sales Analysis.pbix -------------------------------------------------------------------------------- /Allfiles/Labs/14/14-Starter-Sales Analysis.pbix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Allfiles/Labs/14/14-Starter-Sales Analysis.pbix -------------------------------------------------------------------------------- /Allfiles/Labs/14/14-create-dax.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Allfiles/Labs/14/14-create-dax.zip -------------------------------------------------------------------------------- /Allfiles/Labs/15/15-scalable-semantic-models.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Allfiles/Labs/15/15-scalable-semantic-models.zip -------------------------------------------------------------------------------- /Allfiles/Labs/15/Assets/Snippets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Allfiles/Labs/15/Assets/Snippets.txt -------------------------------------------------------------------------------- /Allfiles/Labs/15/MySolution/placeholder.txt: -------------------------------------------------------------------------------- 1 | This file is intentionally blank. -------------------------------------------------------------------------------- /Allfiles/Labs/15/Solution/15-Solution-Sales Analysis.pbix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Allfiles/Labs/15/Solution/15-Solution-Sales Analysis.pbix -------------------------------------------------------------------------------- /Allfiles/Labs/15/Starter/15-Starter-Sales Analysis.pbix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Allfiles/Labs/15/Starter/15-Starter-Sales Analysis.pbix -------------------------------------------------------------------------------- /Allfiles/Labs/16b/16-Starter-Sales Analysis.pbix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Allfiles/Labs/16b/16-Starter-Sales Analysis.pbix -------------------------------------------------------------------------------- /Allfiles/Labs/16b/16-reusable-assets.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Allfiles/Labs/16b/16-reusable-assets.zip -------------------------------------------------------------------------------- /Allfiles/Labs/16b/AdventureWorksLogo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Allfiles/Labs/16b/AdventureWorksLogo.jpg -------------------------------------------------------------------------------- /Allfiles/Labs/16b/Solution/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Allfiles/Labs/16b/Solution/.gitignore -------------------------------------------------------------------------------- /Allfiles/Labs/16b/Solution/My new report.Report/.platform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Allfiles/Labs/16b/Solution/My new report.Report/.platform -------------------------------------------------------------------------------- /Allfiles/Labs/16b/Solution/My new report.Report/StaticResources/RegisteredResources/Accessible_Orchid7929922611562745.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Allfiles/Labs/16b/Solution/My new report.Report/StaticResources/RegisteredResources/Accessible_Orchid7929922611562745.json -------------------------------------------------------------------------------- /Allfiles/Labs/16b/Solution/My new report.Report/StaticResources/RegisteredResources/AdventureWorksLogo813982383943191.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Allfiles/Labs/16b/Solution/My new report.Report/StaticResources/RegisteredResources/AdventureWorksLogo813982383943191.jpg -------------------------------------------------------------------------------- /Allfiles/Labs/16b/Solution/My new report.Report/StaticResources/SharedResources/BaseThemes/CY24SU10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Allfiles/Labs/16b/Solution/My new report.Report/StaticResources/SharedResources/BaseThemes/CY24SU10.json -------------------------------------------------------------------------------- /Allfiles/Labs/16b/Solution/My new report.Report/definition.pbir: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Allfiles/Labs/16b/Solution/My new report.Report/definition.pbir -------------------------------------------------------------------------------- /Allfiles/Labs/16b/Solution/My new report.Report/report.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Allfiles/Labs/16b/Solution/My new report.Report/report.json -------------------------------------------------------------------------------- /Allfiles/Labs/16b/Solution/My new report.Report/semanticModelDiagramLayout.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Allfiles/Labs/16b/Solution/My new report.Report/semanticModelDiagramLayout.json -------------------------------------------------------------------------------- /Allfiles/Labs/16b/Solution/My new report.SemanticModel/.pbi/editorSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Allfiles/Labs/16b/Solution/My new report.SemanticModel/.pbi/editorSettings.json -------------------------------------------------------------------------------- /Allfiles/Labs/16b/Solution/My new report.SemanticModel/.pbi/unappliedChanges.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Allfiles/Labs/16b/Solution/My new report.SemanticModel/.pbi/unappliedChanges.json -------------------------------------------------------------------------------- /Allfiles/Labs/16b/Solution/My new report.SemanticModel/.platform: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Allfiles/Labs/16b/Solution/My new report.SemanticModel/.platform -------------------------------------------------------------------------------- /Allfiles/Labs/16b/Solution/My new report.SemanticModel/definition.pbism: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Allfiles/Labs/16b/Solution/My new report.SemanticModel/definition.pbism -------------------------------------------------------------------------------- /Allfiles/Labs/16b/Solution/My new report.SemanticModel/definition/cultures/en-US.tmdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Allfiles/Labs/16b/Solution/My new report.SemanticModel/definition/cultures/en-US.tmdl -------------------------------------------------------------------------------- /Allfiles/Labs/16b/Solution/My new report.SemanticModel/definition/database.tmdl: -------------------------------------------------------------------------------- 1 | database 2 | compatibilityLevel: 1567 3 | 4 | -------------------------------------------------------------------------------- /Allfiles/Labs/16b/Solution/My new report.SemanticModel/definition/expressions.tmdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Allfiles/Labs/16b/Solution/My new report.SemanticModel/definition/expressions.tmdl -------------------------------------------------------------------------------- /Allfiles/Labs/16b/Solution/My new report.SemanticModel/definition/model.tmdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Allfiles/Labs/16b/Solution/My new report.SemanticModel/definition/model.tmdl -------------------------------------------------------------------------------- /Allfiles/Labs/16b/Solution/My new report.SemanticModel/definition/relationships.tmdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Allfiles/Labs/16b/Solution/My new report.SemanticModel/definition/relationships.tmdl -------------------------------------------------------------------------------- /Allfiles/Labs/16b/Solution/My new report.SemanticModel/definition/tables/Date.tmdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Allfiles/Labs/16b/Solution/My new report.SemanticModel/definition/tables/Date.tmdl -------------------------------------------------------------------------------- /Allfiles/Labs/16b/Solution/My new report.SemanticModel/definition/tables/Product.tmdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Allfiles/Labs/16b/Solution/My new report.SemanticModel/definition/tables/Product.tmdl -------------------------------------------------------------------------------- /Allfiles/Labs/16b/Solution/My new report.SemanticModel/definition/tables/Region.tmdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Allfiles/Labs/16b/Solution/My new report.SemanticModel/definition/tables/Region.tmdl -------------------------------------------------------------------------------- /Allfiles/Labs/16b/Solution/My new report.SemanticModel/definition/tables/Reseller.tmdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Allfiles/Labs/16b/Solution/My new report.SemanticModel/definition/tables/Reseller.tmdl -------------------------------------------------------------------------------- /Allfiles/Labs/16b/Solution/My new report.SemanticModel/definition/tables/Sales.tmdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Allfiles/Labs/16b/Solution/My new report.SemanticModel/definition/tables/Sales.tmdl -------------------------------------------------------------------------------- /Allfiles/Labs/16b/Solution/My new report.SemanticModel/definition/tables/Salesperson (Performance).tmdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Allfiles/Labs/16b/Solution/My new report.SemanticModel/definition/tables/Salesperson (Performance).tmdl -------------------------------------------------------------------------------- /Allfiles/Labs/16b/Solution/My new report.SemanticModel/definition/tables/Salesperson.tmdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Allfiles/Labs/16b/Solution/My new report.SemanticModel/definition/tables/Salesperson.tmdl -------------------------------------------------------------------------------- /Allfiles/Labs/16b/Solution/My new report.SemanticModel/definition/tables/SalespersonRegion.tmdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Allfiles/Labs/16b/Solution/My new report.SemanticModel/definition/tables/SalespersonRegion.tmdl -------------------------------------------------------------------------------- /Allfiles/Labs/16b/Solution/My new report.SemanticModel/definition/tables/Targets.tmdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Allfiles/Labs/16b/Solution/My new report.SemanticModel/definition/tables/Targets.tmdl -------------------------------------------------------------------------------- /Allfiles/Labs/16b/Solution/My new report.SemanticModel/definition/tables/US Population.tmdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Allfiles/Labs/16b/Solution/My new report.SemanticModel/definition/tables/US Population.tmdl -------------------------------------------------------------------------------- /Allfiles/Labs/16b/Solution/My new report.SemanticModel/diagramLayout.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Allfiles/Labs/16b/Solution/My new report.SemanticModel/diagramLayout.json -------------------------------------------------------------------------------- /Allfiles/Labs/16b/Solution/My new report.pbip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Allfiles/Labs/16b/Solution/My new report.pbip -------------------------------------------------------------------------------- /Allfiles/Labs/16b/Solution/My new report.pbit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Allfiles/Labs/16b/Solution/My new report.pbit -------------------------------------------------------------------------------- /Allfiles/Labs/16b/Solution/Regional-Sales.pbit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Allfiles/Labs/16b/Solution/Regional-Sales.pbit -------------------------------------------------------------------------------- /Allfiles/Labs/16b/bike.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Allfiles/Labs/16b/bike.png -------------------------------------------------------------------------------- /Allfiles/Labs/16b/data/region-north.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Allfiles/Labs/16b/data/region-north.csv -------------------------------------------------------------------------------- /Allfiles/Labs/16b/data/region-south.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Allfiles/Labs/16b/data/region-south.csv -------------------------------------------------------------------------------- /Allfiles/Labs/16b/us-resident-population-estimates-2020.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Allfiles/Labs/16b/us-resident-population-estimates-2020.html -------------------------------------------------------------------------------- /Allfiles/Labs/17/MySolution/placeholder.txt: -------------------------------------------------------------------------------- 1 | This file is intentionally blank. -------------------------------------------------------------------------------- /Allfiles/Labs/17/Solution/Sales Analysis - Enforce model security.pbix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Allfiles/Labs/17/Solution/Sales Analysis - Enforce model security.pbix -------------------------------------------------------------------------------- /Allfiles/Labs/17/Starter/Sales Analysis - Enforce model security.pbix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Allfiles/Labs/17/Starter/Sales Analysis - Enforce model security.pbix -------------------------------------------------------------------------------- /Allfiles/Labs/22a/Store.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Allfiles/Labs/22a/Store.csv -------------------------------------------------------------------------------- /Allfiles/Labs/22b/Solution/eurostat-notebook.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Allfiles/Labs/22b/Solution/eurostat-notebook.ipynb -------------------------------------------------------------------------------- /Allfiles/Labs/22b/Solution/projected-population.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Allfiles/Labs/22b/Solution/projected-population.png -------------------------------------------------------------------------------- /Allfiles/Labs/22b/Starter/eurostat-notebook.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Allfiles/Labs/22b/Starter/eurostat-notebook.ipynb -------------------------------------------------------------------------------- /Allfiles/Labs/22c/create-dw.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Allfiles/Labs/22c/create-dw.txt -------------------------------------------------------------------------------- /Allfiles/Labs/22d/create-dw.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Allfiles/Labs/22d/create-dw.txt -------------------------------------------------------------------------------- /Instructions/Labs/01-lakehouse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/01-lakehouse.md -------------------------------------------------------------------------------- /Instructions/Labs/02-analyze-spark.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/02-analyze-spark.md -------------------------------------------------------------------------------- /Instructions/Labs/03-delta-lake.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/03-delta-lake.md -------------------------------------------------------------------------------- /Instructions/Labs/03b-medallion-lakehouse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/03b-medallion-lakehouse.md -------------------------------------------------------------------------------- /Instructions/Labs/04-ingest-pipeline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/04-ingest-pipeline.md -------------------------------------------------------------------------------- /Instructions/Labs/05-dataflows-gen2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/05-dataflows-gen2.md -------------------------------------------------------------------------------- /Instructions/Labs/06-data-warehouse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/06-data-warehouse.md -------------------------------------------------------------------------------- /Instructions/Labs/06a-data-warehouse-load.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/06a-data-warehouse-load.md -------------------------------------------------------------------------------- /Instructions/Labs/06b-data-warehouse-query.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/06b-data-warehouse-query.md -------------------------------------------------------------------------------- /Instructions/Labs/06c-monitor-data-warehouse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/06c-monitor-data-warehouse.md -------------------------------------------------------------------------------- /Instructions/Labs/06d-secure-data-warehouse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/06d-secure-data-warehouse.md -------------------------------------------------------------------------------- /Instructions/Labs/07-real-time-Intelligence.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/07-real-time-Intelligence.md -------------------------------------------------------------------------------- /Instructions/Labs/08-data-science-get-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/08-data-science-get-started.md -------------------------------------------------------------------------------- /Instructions/Labs/08a-data-science-explore-data.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/08a-data-science-explore-data.md -------------------------------------------------------------------------------- /Instructions/Labs/08b-data-science-preprocess-data-wrangler.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/08b-data-science-preprocess-data-wrangler.md -------------------------------------------------------------------------------- /Instructions/Labs/08c-data-science-train.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/08c-data-science-train.md -------------------------------------------------------------------------------- /Instructions/Labs/08d-data-science-batch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/08d-data-science-batch.md -------------------------------------------------------------------------------- /Instructions/Labs/09-real-time-analytics-eventstream.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/09-real-time-analytics-eventstream.md -------------------------------------------------------------------------------- /Instructions/Labs/11-data-activator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/11-data-activator.md -------------------------------------------------------------------------------- /Instructions/Labs/12-query-data-in-kql-database.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/12-query-data-in-kql-database.md -------------------------------------------------------------------------------- /Instructions/Labs/13-real-time-dashboards.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/13-real-time-dashboards.md -------------------------------------------------------------------------------- /Instructions/Labs/14-create-dax-calculations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/14-create-dax-calculations.md -------------------------------------------------------------------------------- /Instructions/Labs/15-design-scalable-semantic-models.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/15-design-scalable-semantic-models.md -------------------------------------------------------------------------------- /Instructions/Labs/16-create-reusable-power-bi-assets.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/16-create-reusable-power-bi-assets.md -------------------------------------------------------------------------------- /Instructions/Labs/17-enforce-model-security.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/17-enforce-model-security.md -------------------------------------------------------------------------------- /Instructions/Labs/18-monitor-hub.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/18-monitor-hub.md -------------------------------------------------------------------------------- /Instructions/Labs/19-secure-data-access.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/19-secure-data-access.md -------------------------------------------------------------------------------- /Instructions/Labs/20-work-with-database.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/20-work-with-database.md -------------------------------------------------------------------------------- /Instructions/Labs/20a-work-with-graphql.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/20a-work-with-graphql.md -------------------------------------------------------------------------------- /Instructions/Labs/21-implement-cicd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/21-implement-cicd.md -------------------------------------------------------------------------------- /Instructions/Labs/22a-copilot-fabric-dataflow-gen2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/22a-copilot-fabric-dataflow-gen2.md -------------------------------------------------------------------------------- /Instructions/Labs/22b-copilot-fabric-notebooks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/22b-copilot-fabric-notebooks.md -------------------------------------------------------------------------------- /Instructions/Labs/22c-copilot-fabric-data-warehouse.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/22c-copilot-fabric-data-warehouse.md -------------------------------------------------------------------------------- /Instructions/Labs/22d-copilot-fabric-data-agents.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/22d-copilot-fabric-data-agents.md -------------------------------------------------------------------------------- /Instructions/Labs/Images/activator-build-object.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/activator-build-object.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/activator-define-action.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/activator-define-action.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/activator-destination.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/activator-destination.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/activator-event-details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/activator-event-details.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/activator-events-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/activator-events-page.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/activator-home-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/activator-home-screen.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/activator-new-rule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/activator-new-rule.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/activator-reflex-home-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/activator-reflex-home-screen.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/activator-rule-filters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/activator-rule-filters.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/activator-rule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/activator-rule.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/activator-temperature-rule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/activator-temperature-rule.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/add-data-destination.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/add-data-destination.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/assign-role.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/assign-role.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/auto-generated-load.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/auto-generated-load.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/bronze-files.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/bronze-files.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/built-in-chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/built-in-chart.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/calculation-group-matrix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/calculation-group-matrix.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/choose-columns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/choose-columns.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/choose-data-source.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/choose-data-source.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/cls-table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/cls-table.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/configure-activator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/configure-activator.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/configure-destination.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/configure-destination.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/copilot-fabric-data-agent-create.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/copilot-fabric-data-agent-create.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/copilot-fabric-data-agent-created.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/copilot-fabric-data-agent-created.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/copilot-fabric-data-agent-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/copilot-fabric-data-agent-new.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/copilot-fabric-data-agent-query-1-explanation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/copilot-fabric-data-agent-query-1-explanation.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/copilot-fabric-data-agent-question-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/copilot-fabric-data-agent-question-1.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/copilot-fabric-data-agent-select-tables.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/copilot-fabric-data-agent-select-tables.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/copilot-fabric-data-warehouse-pane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/copilot-fabric-data-warehouse-pane.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/copilot-fabric-data-warehouse-sql-1-results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/copilot-fabric-data-warehouse-sql-1-results.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/copilot-fabric-data-warehouse-sql-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/copilot-fabric-data-warehouse-sql-1.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/copilot-fabric-data-warehouse-start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/copilot-fabric-data-warehouse-start.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/copilot-fabric-data-warehouse-view-error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/copilot-fabric-data-warehouse-view-error.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/copilot-fabric-dataflow-bom-character.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/copilot-fabric-dataflow-bom-character.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/copilot-fabric-dataflow-choose-destination.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/copilot-fabric-dataflow-choose-destination.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/copilot-fabric-dataflow-copilot-pane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/copilot-fabric-dataflow-copilot-pane.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/copilot-fabric-dataflow-copilot-xml-fields-expanded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/copilot-fabric-dataflow-copilot-xml-fields-expanded.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/copilot-fabric-dataflow-destination-column-mapping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/copilot-fabric-dataflow-destination-column-mapping.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/copilot-fabric-dataflow-lakehouse-result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/copilot-fabric-dataflow-lakehouse-result.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/copilot-fabric-dataflow-modified-date-type-correct.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/copilot-fabric-dataflow-modified-date-type-correct.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/copilot-fabric-dataflow-modified-date.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/copilot-fabric-dataflow-modified-date.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/copilot-fabric-dataflow-new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/copilot-fabric-dataflow-new.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/copilot-fabric-dataflow-plus-character.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/copilot-fabric-dataflow-plus-character.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/copilot-fabric-dataflow-power-query.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/copilot-fabric-dataflow-power-query.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/copilot-fabric-dataflow-remove-columns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/copilot-fabric-dataflow-remove-columns.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/copilot-fabric-dataflow-result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/copilot-fabric-dataflow-result.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/copilot-fabric-dataflow-square-feet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/copilot-fabric-dataflow-square-feet.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/copilot-fabric-dataflow-step.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/copilot-fabric-dataflow-step.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/copilot-fabric-dataflow-store-size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/copilot-fabric-dataflow-store-size.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/copilot-fabric-dataflow-xml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/copilot-fabric-dataflow-xml.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/copilot-fabric-notebook-create.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/copilot-fabric-notebook-create.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/copilot-fabric-notebook-europe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/copilot-fabric-notebook-europe.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/copilot-fabric-notebook-markdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/copilot-fabric-notebook-markdown.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/copilot-fabric-notebook-rename.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/copilot-fabric-notebook-rename.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/copilot-fabric-notebook-replace-values.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/copilot-fabric-notebook-replace-values.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/copilot-fabric-notebook-split-fields.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/copilot-fabric-notebook-split-fields.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/copilot-fabric-notebook-step-1-created.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/copilot-fabric-notebook-step-1-created.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/copilot-fabric-notebook-step-2-lakehouse-attached.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/copilot-fabric-notebook-step-2-lakehouse-attached.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/copilot-fabric-notebook-step-3-code-magic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/copilot-fabric-notebook-step-3-code-magic.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/copilot-fabric-notebook-step-4-lakehouse-refreshed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/copilot-fabric-notebook-step-4-lakehouse-refreshed.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/copilot-fabric-notebook-step-5-lakehouse-refreshed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/copilot-fabric-notebook-step-5-lakehouse-refreshed.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/copilot-fabric-notebook-step-6-copilot-pane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/copilot-fabric-notebook-step-6-copilot-pane.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/copilot-fabric-notebook-step-7-line-chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/copilot-fabric-notebook-step-7-line-chart.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/copy-data-pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/copy-data-pipeline.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/create-dax-calculations-in-power-bi-desktop_date-table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/create-dax-calculations-in-power-bi-desktop_date-table.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/create-dax-calculations-in-power-bi-desktop_image10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/create-dax-calculations-in-power-bi-desktop_image10.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/create-dax-calculations-in-power-bi-desktop_image11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/create-dax-calculations-in-power-bi-desktop_image11.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/create-dax-calculations-in-power-bi-desktop_image15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/create-dax-calculations-in-power-bi-desktop_image15.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/create-dax-calculations-in-power-bi-desktop_image16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/create-dax-calculations-in-power-bi-desktop_image16.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/create-dax-calculations-in-power-bi-desktop_image17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/create-dax-calculations-in-power-bi-desktop_image17.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/create-dax-calculations-in-power-bi-desktop_image18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/create-dax-calculations-in-power-bi-desktop_image18.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/create-dax-calculations-in-power-bi-desktop_image19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/create-dax-calculations-in-power-bi-desktop_image19.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/create-dax-calculations-in-power-bi-desktop_image21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/create-dax-calculations-in-power-bi-desktop_image21.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/create-dax-calculations-in-power-bi-desktop_image22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/create-dax-calculations-in-power-bi-desktop_image22.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/create-dax-calculations-in-power-bi-desktop_image23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/create-dax-calculations-in-power-bi-desktop_image23.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/create-dax-calculations-in-power-bi-desktop_image24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/create-dax-calculations-in-power-bi-desktop_image24.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/create-dax-calculations-in-power-bi-desktop_image26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/create-dax-calculations-in-power-bi-desktop_image26.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/create-dax-calculations-in-power-bi-desktop_image27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/create-dax-calculations-in-power-bi-desktop_image27.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/create-dax-calculations-in-power-bi-desktop_image28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/create-dax-calculations-in-power-bi-desktop_image28.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/create-dax-calculations-in-power-bi-desktop_image29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/create-dax-calculations-in-power-bi-desktop_image29.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/create-dax-calculations-in-power-bi-desktop_image30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/create-dax-calculations-in-power-bi-desktop_image30.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/create-dax-calculations-in-power-bi-desktop_image31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/create-dax-calculations-in-power-bi-desktop_image31.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/create-dax-calculations-in-power-bi-desktop_image35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/create-dax-calculations-in-power-bi-desktop_image35.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/create-dax-calculations-in-power-bi-desktop_image37.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/create-dax-calculations-in-power-bi-desktop_image37.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/create-dax-calculations-in-power-bi-desktop_image39.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/create-dax-calculations-in-power-bi-desktop_image39.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/create-dax-calculations-in-power-bi-desktop_image40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/create-dax-calculations-in-power-bi-desktop_image40.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/create-dax-calculations-in-power-bi-desktop_image41.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/create-dax-calculations-in-power-bi-desktop_image41.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/create-dax-calculations-in-power-bi-desktop_image43.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/create-dax-calculations-in-power-bi-desktop_image43.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/create-dax-calculations-in-power-bi-desktop_image45.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/create-dax-calculations-in-power-bi-desktop_image45.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/create-dax-calculations-in-power-bi-desktop_image47.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/create-dax-calculations-in-power-bi-desktop_image47.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/create-dax-calculations-in-power-bi-desktop_image48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/create-dax-calculations-in-power-bi-desktop_image48.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/create-dax-calculations-in-power-bi-desktop_image50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/create-dax-calculations-in-power-bi-desktop_image50.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/create-dax-calculations-in-power-bi-desktop_image9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/create-dax-calculations-in-power-bi-desktop_image9.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/create-eventhouse-sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/create-eventhouse-sample.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/create-eventhouse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/create-eventhouse.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/create-onelake-role.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/create-onelake-role.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/custom-column-added.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/custom-column-added.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/custom-column.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/custom-column.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/dashboard-base-query.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/dashboard-base-query.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/dashboard-chart-map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/dashboard-chart-map.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/dashboard-page-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/dashboard-page-2.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/dashboard-parameters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/dashboard-parameters.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/data-destination-target.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/data-destination-target.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/data-flow-query.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/data-flow-query.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/data-science-metrics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/data-science-metrics.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/data-wrangler-delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/data-wrangler-delete.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/data-wrangler-summary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/data-wrangler-summary.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/dataflow-activity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/dataflow-activity.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/dataflow-connection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/dataflow-connection.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/dataflow-pipeline-succeeded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/dataflow-pipeline-succeeded.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/dataset-relationships.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/dataset-relationships.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/define-schema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/define-schema.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/delete-data-activity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/delete-data-activity.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/delete-pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/delete-pipeline.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/delta-table-files.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/delta-table-files.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/deployment-pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/deployment-pipeline.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/design-scalable-semantic-models-image1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/design-scalable-semantic-models-image1.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/design-scalable-semantic-models-image10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/design-scalable-semantic-models-image10.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/design-scalable-semantic-models-image13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/design-scalable-semantic-models-image13.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/design-scalable-semantic-models-image14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/design-scalable-semantic-models-image14.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/design-scalable-semantic-models-image15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/design-scalable-semantic-models-image15.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/design-scalable-semantic-models-image16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/design-scalable-semantic-models-image16.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/design-scalable-semantic-models-image17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/design-scalable-semantic-models-image17.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/design-scalable-semantic-models-image18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/design-scalable-semantic-models-image18.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/design-scalable-semantic-models-image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/design-scalable-semantic-models-image2.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/design-scalable-semantic-models-image3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/design-scalable-semantic-models-image3.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/design-scalable-semantic-models-image4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/design-scalable-semantic-models-image4.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/design-scalable-semantic-models-image5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/design-scalable-semantic-models-image5.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/destination-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/destination-settings.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/dw-relationships.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/dw-relationships.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/edit-dashboard-tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/edit-dashboard-tile.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/empty-eventstream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/empty-eventstream.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/enforce-model-security-image10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/enforce-model-security-image10.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/enforce-model-security-image11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/enforce-model-security-image11.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/enforce-model-security-image12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/enforce-model-security-image12.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/enforce-model-security-image13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/enforce-model-security-image13.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/enforce-model-security-image16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/enforce-model-security-image16.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/enforce-model-security-image19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/enforce-model-security-image19.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/enforce-model-security-image21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/enforce-model-security-image21.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/enforce-model-security-image22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/enforce-model-security-image22.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/enforce-model-security-image23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/enforce-model-security-image23.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/enforce-model-security-image24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/enforce-model-security-image24.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/enforce-model-security-image25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/enforce-model-security-image25.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/enforce-model-security-image26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/enforce-model-security-image26.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/enforce-model-security-image27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/enforce-model-security-image27.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/enforce-model-security-image28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/enforce-model-security-image28.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/enforce-model-security-image29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/enforce-model-security-image29.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/enforce-model-security-image30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/enforce-model-security-image30.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/enforce-model-security-image31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/enforce-model-security-image31.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/enforce-model-security-image32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/enforce-model-security-image32.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/enforce-model-security-image33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/enforce-model-security-image33.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/enforce-model-security-image34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/enforce-model-security-image34.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/enforce-model-security-image35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/enforce-model-security-image35.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/enforce-model-security-image36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/enforce-model-security-image36.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/enforce-model-security-image37.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/enforce-model-security-image37.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/enforce-model-security-image38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/enforce-model-security-image38.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/enforce-model-security-image39.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/enforce-model-security-image39.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/enforce-model-security-image40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/enforce-model-security-image40.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/enforce-model-security-image43.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/enforce-model-security-image43.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/enforce-model-security-image44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/enforce-model-security-image44.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/enforce-model-security-image45.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/enforce-model-security-image45.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/enforce-model-security-image46.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/enforce-model-security-image46.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/enforce-model-security-image47.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/enforce-model-security-image47.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/enforce-model-security-image48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/enforce-model-security-image48.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/enforce-model-security-image49.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/enforce-model-security-image49.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/enforce-model-security-image50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/enforce-model-security-image50.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/enforce-model-security-image51.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/enforce-model-security-image51.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/enforce-model-security-image52.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/enforce-model-security-image52.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/enforce-model-security-image53.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/enforce-model-security-image53.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/enforce-model-security-image54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/enforce-model-security-image54.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/enforce-model-security-image55.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/enforce-model-security-image55.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/enforce-model-security-image56.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/enforce-model-security-image56.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/enforce-model-security-image57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/enforce-model-security-image57.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/enforce-model-security-image58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/enforce-model-security-image58.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/enforce-model-security-image59.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/enforce-model-security-image59.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/enforce-model-security-image60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/enforce-model-security-image60.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/enforce-model-security-image61.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/enforce-model-security-image61.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/enforce-model-security-image62.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/enforce-model-security-image62.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/enforce-model-security-image63.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/enforce-model-security-image63.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/enforce-model-security-image64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/enforce-model-security-image64.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/enforce-model-security-image65.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/enforce-model-security-image65.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/enforce-model-security-image66.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/enforce-model-security-image66.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/enforce-model-security-image67.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/enforce-model-security-image67.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/enforce-model-security-image68.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/enforce-model-security-image68.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/enforce-model-security-image69.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/enforce-model-security-image69.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/enforce-model-security-image70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/enforce-model-security-image70.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/enforce-model-security-image71.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/enforce-model-security-image71.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/enforce-model-security-image72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/enforce-model-security-image72.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/enforce-model-security-image73.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/enforce-model-security-image73.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/enforce-model-security-image74.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/enforce-model-security-image74.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/enforce-model-security-image76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/enforce-model-security-image76.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/enforce-model-security-image8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/enforce-model-security-image8.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/enforce-model-security-image9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/enforce-model-security-image9.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/eventhouse-with-table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/eventhouse-with-table.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/eventstream-add-aggregates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/eventstream-add-aggregates.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/eventstream-destination.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/eventstream-destination.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/explorer-notebook-view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/explorer-notebook-view.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/export-template.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/export-template.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/field-parameters-bar-chart-final.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/field-parameters-bar-chart-final.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/field-parameters-bar-chart-start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/field-parameters-bar-chart-start.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/grant-deny-table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/grant-deny-table.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/grant-people-access-window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/grant-people-access-window.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/grant-warehouse-access.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/grant-warehouse-access.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/group-by-table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/group-by-table.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/historical-runs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/historical-runs.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/kql-database-event-processing-before-ingestion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/kql-database-event-processing-before-ingestion.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/kql-group-query.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/kql-group-query.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/kql-query.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/kql-query.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/kql-stock-query.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/kql-stock-query.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/kql-table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/kql-table.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/kql-take-100-query.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/kql-take-100-query.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/lab-pipeline-compare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/lab-pipeline-compare.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/lakehouse-destination.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/lakehouse-destination.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/lakehouse-explorer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/lakehouse-explorer.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/lakehouse-manage-permissions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/lakehouse-manage-permissions.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/lakehouse-metadata-only-access.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/lakehouse-metadata-only-access.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/lakehouse-table-access.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/lakehouse-table-access.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/load-spark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/load-spark.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/loaded-table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/loaded-table.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/manage-onelake-roles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/manage-onelake-roles.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/manage-parameter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/manage-parameter.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/masked-table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/masked-table.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/matrix-parameters-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/matrix-parameters-selected.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/model-dw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/model-dw.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/monitor-columns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/monitor-columns.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/monitor-dataflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/monitor-dataflow.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/monitor-filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/monitor-filter.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/monitor-notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/monitor-notebook.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/name-eventstream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/name-eventstream.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/name-notebook-markdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/name-notebook-markdown.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/new-dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/new-dashboard.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/new-data-access-role.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/new-data-access-role.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/new-data-flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/new-data-flow.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/new-data-warehouse2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/new-data-warehouse2.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/new-dataflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/new-dataflow.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/new-empty-data-warehouse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/new-empty-data-warehouse.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/new-empty-workspace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/new-empty-workspace.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/new-lakehouse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/new-lakehouse.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/new-notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/new-notebook.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/new-pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/new-pipeline.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/new-sample-lakehouse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/new-sample-lakehouse.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/new-sample-warehouse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/new-sample-warehouse.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/new-stock-stream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/new-stock-stream.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/new-workspace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/new-workspace.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/notebook-output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/notebook-output.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/notebook.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/onelake-catalog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/onelake-catalog.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/parquet-files.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/parquet-files.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/partitioned-data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/partitioned-data.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/pbid-dataflow-connectors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/pbid-dataflow-connectors.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/pipeline-run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/pipeline-run.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/pipeline.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/power-bi-customize-theme-fonts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/power-bi-customize-theme-fonts.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/power-bi-donut-table-default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/power-bi-donut-table-default.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/power-bi-enable-tmdl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/power-bi-enable-tmdl.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/power-bi-icon-donut-table-custom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/power-bi-icon-donut-table-custom.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/power-bi-lineage-view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/power-bi-lineage-view.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/power-bi-measure-details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/power-bi-measure-details.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/power-bi-navigator-html.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/power-bi-navigator-html.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/power-bi-new-relationship-us-population.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/power-bi-new-relationship-us-population.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/power-bi-sales-per-capita-table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/power-bi-sales-per-capita-table.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/power-bi-save-file-types.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/power-bi-save-file-types.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/power-bi-theme-blade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/power-bi-theme-blade.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/power-query.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/power-query.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/products-schema.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/products-schema.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/products-table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/products-table.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/real-time-hub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/real-time-hub.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/real-time-intelligence-eventstream-sourced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/real-time-intelligence-eventstream-sourced.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/relationship-table-final.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/relationship-table-final.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/report-template-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/report-template-example.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/report-template-opened.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/report-template-opened.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/rls-table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/rls-table.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/sales-file-upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/sales-file-upload.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/sales-notebook-rename.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/sales-notebook-rename.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/sales-query.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/sales-query.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/salesorder-table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/salesorder-table.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/sample-data-warehouse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/sample-data-warehouse.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/save-as-pbit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/save-as-pbit.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/select-activator-stream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/select-activator-stream.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/select-region-sales-parameter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/select-region-sales-parameter.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/spark-sql-dataframe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/spark-sql-dataframe.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/sql-database-sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/sql-database-sample.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/sql-endpoint-item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/sql-endpoint-item.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/sql-query.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/sql-query.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/sql-select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/sql-select.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/stock-dashboard-chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/stock-dashboard-chart.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/stock-dashboard-table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/stock-dashboard-table.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/stream-data-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/stream-data-preview.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/stream-table-with-windows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/stream-table-with-windows.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/table-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/table-preview.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/table-year-total-sales.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/table-year-total-sales.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/tile-bar-chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/tile-bar-chart.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/tile-table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/tile-table.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/total-sales-sql.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/total-sales-sql.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/unmasked-table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/unmasked-table.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/upload-products.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/upload-products.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/uploaded-files.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/uploaded-files.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/uploaded-sales-file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/uploaded-sales-file.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/visual-query-merge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/visual-query-merge.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/visual-query-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/visual-query-preview.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/visual-query-results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/visual-query-results.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/visual-query.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/visual-query.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/work-with-model-relationships-image52.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/work-with-model-relationships-image52.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/work-with-model-relationships-image53.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/work-with-model-relationships-image53.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/workspace-access.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/workspace-access.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/workspace-settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/workspace-settings.png -------------------------------------------------------------------------------- /Instructions/Labs/Images/workspace-viewer-view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/Instructions/Labs/Images/workspace-viewer-view.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/LICENSE -------------------------------------------------------------------------------- /_build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/_build.yml -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/_config.yml -------------------------------------------------------------------------------- /index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/index.md -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/readme.md -------------------------------------------------------------------------------- /sales-notebook-rename.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftLearning/mslearn-fabric/HEAD/sales-notebook-rename.png --------------------------------------------------------------------------------