AI-репетитор по Power BI
Complete skill package instant downloadai-power-bi-tutor.txt
Choose how to get it
Start All-Access, from $8.25/mo$99 a year, or $19 a month. 14-day refund on the first charge.
// all-access
You do not download skills. Your AI fetches them.
The KissMySkills connector is a small server your AI chat talks to. Add it once to Claude, ChatGPT, Claude Code or Cursor. From then on, any of our 1,000+ skills is one sentence away.
- 01Add the connector. Settings, Connectors, paste one link. A minute.
- 02Sign in once. The email from your subscription. Nothing installs.
- 03Ask for a skill. "Load AI-репетитор по Power BI." It arrives in the conversation and your AI answers as that specialist.
Every skill, prompt pack and agent, new releases included. Single files can still be bought and kept. Cancel any time from your account. Compare plans
Secure checkout by Shopify
Add it once. Your AI works like a specialist.
Добавьте это в Claude, ChatGPT или Gemini - ваш AI работает как специалист в этой области.
Мгновенная загрузка · 30-дневная гарантия возврата денег. Заплатите один раз и пользуйтесь навсегда - никакой подписки. Написано и протестировано нами, а не собрано с GitHub. Политика возврата средств
Ask it something hard.
Есть вопросы перед покупкой?
Напишите нам, и вам ответит человек - обычно в тот же день. Не бот и не очередь заявок.
hello@kissmyskills.comTrademarks of their respective owners. KissMySkills is not affiliated with or endorsed by them.
Вы не читаете. Это делает ваш AI.
Один раз добавьте файл навыка в Claude, ChatGPT или Gemini. После этого он будет работать как специалист в этой области, начиная уже со следующего сообщения.
Купите один раз, и файл навсегда останется у вас. Или подпишитесь на All-Access, и коннектор KissMySkills будет загружать его и любой другой навык в ваш чат по запросу.
// what's inside
Что входит в этот навык
- Star schema built before the first visual, not patched in later
- Filter context taught with the wrong-total problem you already have
- Measures against calculated columns, decided by a rule you can apply
- 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 you're actually buying
Этот AI-репетитор по Power BI предназначен для тех, кто уже умеет перетаскивать поле на столбчатую диаграмму, но сталкивается с тем, что мера показывает правильное число по месяцам и неправильное в итоге, и понятия не имеет почему. Этот файл превращает Claude, ChatGPT или Gemini в репетитора, который поможет вам создать корректно работающую модель вместо того, чтобы собирать обходные решения.
Он спрашивает, что вы уже создали и откуда поступают ваши данные, определяет ваш уровень, а затем обучает в порядке, который предотвращает проблемы: сначала очистка данных в Power Query, затем звёздная схема с полноценной таблицей дат, связи и кардинальность, меры и вычисляемые столбцы, контекст фильтра, CALCULATE, а затем анализ времени и публикация. Каждый урок состоит из краткого объяснения, одного разобранного примера на другом наборе данных, а затем вашей практики в Desktop. Когда итоговое значение оказывается неправильным, он спрашивает, что именно фильтрует строка итога, и ждёт.
Одинаково работает в Claude, ChatGPT и Gemini. Разовая покупка, без подписки, и вы будете готовы за две минуты.
# 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.
Пример из фактического файла, который вы скачаете.
Четыре шага. Любой чат AI.
- 01Скачайте файл
После оформления заказа ссылка для скачивания будет отправлена вам на электронную почту. Сохраните файл в любом месте на вашем устройстве.
- 02Откройте свой чат AI
Claude, ChatGPT, Gemini, Grok или Copilot - какой бы вы уже ни использовали.
- 03Вставьте содержимое файла
Вставьте это в системный prompt, инструкции проекта или поле пользовательских инструкций.
- 04Начать работу
Ваш AI теперь настроен как специалист. Задавайте ему любые вопросы в его области.
Технические знания не требуются. Без подписки. Заплатите один раз и пользуйтесь навсегда.
Работает со всеми основными AI-чатами.
Перетащите файл в системный prompt вашего AI, инструкции проекта или пользовательские инструкции. Никаких настроек. Никакого кода. Никакой привязки к поставщику.
Вопросы об этом товаре
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.
Больше навыков в этой области
Тренер AI по навыкам репетитора
Тренер AI по навыкам репетитора
Репетитор AI по судебной психологии
Репетитор AI по судебной психологии
Репетитор по нейронным сетям с AI
Репетитор по нейронным сетям с AI