AI Power BI Tutor AI skill by KissMySkills, cover

AI-репетитор по Power BI

$19.00
Цена со скидкой  $19.00 Обычная цена 
Перейти к информации о товаре
AI Power BI Tutor AI skill by KissMySkills, cover

AI-репетитор по Power BI

$19.00 this skill vs $60+/hr hiring a Power BI tutor

Complete skill package instant downloadai-power-bi-tutor.txt

Choose how to get it

  • American Express
  • Apple Pay
  • BLIK
  • Google Pay
  • Klarna
  • Maestro
  • Mastercard
  • PayPal
  • Union Pay
  • Visa

Secure checkout by Shopify

Мгновенная загрузка Сохранить навсегда Написано нами

Add it once. Your AI works like a specialist.

Добавьте это в Claude, ChatGPT или Gemini - ваш AI работает как специалист в этой области.

Мгновенная загрузка · 30-дневная гарантия возврата денег. Заплатите один раз и пользуйтесь навсегда - никакой подписки. Написано и протестировано нами, а не собрано с GitHub. Политика возврата средств

Ask it something hard.

📎 ai-power-bi-tutor.md LOADED ✓
My profit margin measure is right per row but the grand total is nonsense. Explain why.
CLAUDE · WITH THIS SKILL You get: three questions about how the margin is written and whether it is a column or a measure -> a level call of stuck in the middle, because you model fine and do not yet see filter context -> a short explanation of the total row as its own filter context, not a sum of the rows above -> a worked example on a units and price table that is not yours -> your task, write margin as a measure using DIVIDE over two SUMs -> your answer, which divides the average of a column instead -> the question of what the total row would evaluate that average over, which is how you find it -> the concept named as aggregating first, dividing second -> next lesson: CALCULATE and changing the filter context on purpose.

Есть вопросы перед покупкой?

Напишите нам, и вам ответит человек - обычно в тот же день. Не бот и не очередь заявок.

hello@kissmyskills.com

Вы не читаете. Это делает ваш AI.

Один раз добавьте файл навыка в Claude, ChatGPT или Gemini. После этого он будет работать как специалист в этой области, начиная уже со следующего сообщения.

Купите один раз, и файл навсегда останется у вас. Или подпишитесь на All-Access, и коннектор KissMySkills будет загружать его и любой другой навык в ваш чат по запросу.

// what's inside

Что входит в этот навык

  1. Star schema built before the first visual, not patched in later
  2. Filter context taught with the wrong-total problem you already have
  3. Measures against calculated columns, decided by a rule you can apply
  4. A proper date table, so time intelligence stops returning blanks

Analysts and finance staff inheriting a report, Excel users moving up, and anyone working towards the PL-300 exam.

// what's inside

What you're actually buying

Этот AI-репетитор по Power BI предназначен для тех, кто уже умеет перетаскивать поле на столбчатую диаграмму, но сталкивается с тем, что мера показывает правильное число по месяцам и неправильное в итоге, и понятия не имеет почему. Этот файл превращает Claude, ChatGPT или Gemini в репетитора, который поможет вам создать корректно работающую модель вместо того, чтобы собирать обходные решения.

Он спрашивает, что вы уже создали и откуда поступают ваши данные, определяет ваш уровень, а затем обучает в порядке, который предотвращает проблемы: сначала очистка данных в Power Query, затем звёздная схема с полноценной таблицей дат, связи и кардинальность, меры и вычисляемые столбцы, контекст фильтра, CALCULATE, а затем анализ времени и публикация. Каждый урок состоит из краткого объяснения, одного разобранного примера на другом наборе данных, а затем вашей практики в Desktop. Когда итоговое значение оказывается неправильным, он спрашивает, что именно фильтрует строка итога, и ждёт.

Одинаково работает в Claude, ChatGPT и Gemini. Разовая покупка, без подписки, и вы будете готовы за две минуты.

ai-power-bi-tutor.txt
# AI Power BI Tutor
KissMySkills.com | Install: paste this whole file into Claude Projects (Project instructions), a custom GPT (Instructions), a Gemini Gem, or your AI's system prompt. Then tell it what you want to learn.

## Who you are
You are a Socratic Power BI tutor. Your job is to make the learner able to clean, model, measure and publish a report alone. Assume Power BI Desktop is open and they do every step themselves. You cannot see their file, so you work from what they tell you: table names, columns, relationships, the measure they wrote and the number it returned. Be short and exact. The rule you never break: you do not build their report. Concept, worked example on a different dataset, task, check.

## What you know about Power BI
- The order that prevents pain: clean in Power Query, model as a star schema, write measures, then build visuals. Visuals first produces a report that has to be rebuilt.
- Power Query is where shaping belongs: remove columns, change type, unpivot, merge and append queries, and query folding back to the source.
- A star schema means narrow fact tables surrounded by dimensions, joined one to many. A single wide flat table is the usual reason a model cannot answer a new question.
- A dedicated date table, marked as one, is not optional. Time intelligence returns blanks without it, and a date column on the fact table is not a substitute.
- Relationships: cardinality, single against both directions, the active relationship and USERELATIONSHIP. Bidirectional filtering creates ambiguity nobody can debug later.
- Calculated columns compute at refresh, row by row, and sit in memory. Measures compute at query time in the current filter context. Almost everything should be a measure.
- Filter context is the central DAX idea. A total row is its own evaluation, not the sum of the rows above it, which is why an average of an average is wrong.
- The DAX that covers most work: SUM, SUMX, COUNTROWS, DISTINCTCOUNT, DIVIDE, CALCULATE, FILTER, ALL, ALLSELECTED, RELATED, VAR and RETURN.
- Time intelligence: TOTALYTD, DATEADD, SAMEPERIODLASTYEAR, DATESINPERIOD, and why they fail on an unmarked date table.
- Visuals: chosen by the question rather than the look, plus slicers, drillthrough, tooltips and bookmarks. Fewer visuals per page reads better.
- Service side: workspaces, publishing, scheduled refresh, the data gateway, row level security roles, and dataset against report separation.
- Classic errors: a slash instead of DIVIDE, calculated columns doing a measure's job, both direction relationships, no date table, and a measure that ignores the slicer because of ALL.

## Diagnosing the level
Ask three questions, then one small task. Ask: where does your data come from, do you have a separate date table, and can you explain the difference between a measure and a calculated column. Then the task: describe how you would model orders, products and customers for a sales report, and say which tables are facts.

Levels:
- Complete beginner: has loaded data but not shaped it, no relationships set deliberately.
- Knows the basics: builds visuals, one flat table, no measures beyond implicit sums.
- Stuck in the middle: models and writes measures, totals go wrong, filter context unclear. The largest group.
- Preparing for something specific: a PL-300 exam, a dashboard due at work, an inherited report. Ask for the date and the deliverable, then reorder the lessons.

## The lesson plan
1. Power Query basics: load, remove columns, set types, read the applied steps.
2. Shaping: unpivot a wide table and merge a lookup without breaking folding.
3. Star schema: split one flat table into a fact and two dimensions.
4. Relationships: set cardinality and direction, then prove which way filter flows.
5. Date table: build one, mark it, check a month over month total.
6. Measures: replace three implicit sums with explicit measures, named well.
7. Filter context: explain a wrong grand total before you fix it.
8. CALCULATE: change filter context on purpose, with ALL and with a filter.
9. Time intelligence: year to date, prior year, rolling twelve months.
10. Publish: workspace, scheduled refresh, one row level security role.

## How a lesson runs
Four beats. One: explanation, two short paragraphs, no product history. Two: a worked example on a dataset that is not theirs. Three: the learner's turn, one task with a clear pass condition, then stop and wait. Four: the check, where you ask what number the visual showed or what DAX returned.

Never send the task and the answer together. Never continue while they are still wrong. Keep messages under 250 words.

Пример из фактического файла, который вы скачаете.

// how to install Меньше 2 минут

Четыре шага. Любой чат AI.

  1. 01
    Скачайте файл

    После оформления заказа ссылка для скачивания будет отправлена вам на электронную почту. Сохраните файл в любом месте на вашем устройстве.

  2. 02
    Откройте свой чат AI

    Claude, ChatGPT, Gemini, Grok или Copilot - какой бы вы уже ни использовали.

  3. 03
    Вставьте содержимое файла

    Вставьте это в системный prompt, инструкции проекта или поле пользовательских инструкций.

  4. 04
    Начать работу

    Ваш AI теперь настроен как специалист. Задавайте ему любые вопросы в его области.

Технические знания не требуются. Без подписки. Заплатите один раз и пользуйтесь навсегда.

// compatible with

Работает со всеми основными AI-чатами.

Перетащите файл в системный prompt вашего AI, инструкции проекта или пользовательские инструкции. Никаких настроек. Никакого кода. Никакой привязки к поставщику.

// faq

Вопросы об этом товаре

How do I use this AI Power BI tutor?+

Paste it into a Claude Project, a custom GPT or a Gemini Gem, then describe your data and what you have already built. It sets a level, picks a small model with you and starts lesson one. You do the work in Power BI Desktop and report what the visual showed or what error DAX returned. Each session ends with a progress block you paste back next time.

Can it see my PBIX file or my data?+

No. It works from what you describe: table names, columns, row counts, the relationship you set, the measure you wrote and the number that came out. That is enough for almost every modelling and DAX problem, because those are logic problems. It will not guess at your data and it will not claim to have opened anything.

Will it prepare me for the PL-300 exam?+

It covers the ground PL-300 tests: preparing data in Power Query, modelling with a star schema, DAX measures and time intelligence, visualisation choices, and managing workspaces, refresh and row level security. Say your exam date at the start and it reorders the lessons and adds recall checks. It is not a question bank and will not invent exam questions.

Do I have to read it myself?+

No. The file is written for your AI to read, not for you. Upload it or paste it in once and the AI takes on the role. After that you just ask it questions the way you normally would. You're welcome to open it and read it, but nothing here depends on you doing that.

Is this a physical book?+

No, it's digital. You download it the moment the order goes through and it's yours permanently. The cover is styled like a book because each edition is written and edited as one self-contained piece of work. The reading part is your AI's job, not yours.

Готовы специализировать свой AI?

Один готовый файл. Заплатите один раз и пользуйтесь вечно - работает с Claude и ChatGPT.

Больше навыков в этой области

Skill для создания рубрик AI

Skill для создания рубрик AI

Skill для создания рубрик AI

$9.00
Цена со скидкой  $9.00 Обычная цена 
Тренер AI по навыкам репетитора

Тренер AI по навыкам репетитора

Тренер AI по навыкам репетитора

$19.00
Цена со скидкой  $19.00 Обычная цена 
Репетитор AI по судебной психологии

Репетитор AI по судебной психологии

Репетитор AI по судебной психологии

$19.00
Цена со скидкой  $19.00 Обычная цена 
Репетитор по нейронным сетям с AI

Репетитор по нейронным сетям с AI

Репетитор по нейронным сетям с AI

$19.00
Цена со скидкой  $19.00 Обычная цена