Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hey everyone,
I need help with a calculated column.
I've got two tables. Table one contains the hours employees have worked (Aantal), which project they have worked for (Klantnum.), which role they have. (Personeel.Tarief Categorie)
An employee is either an advisor or a coördinator.
Both have different hour rates. The rates differ per customer (Klantnum.)
These rates are present in second table.
I want to add a calculated column to the first column which does the following:
If Klantnum. is not null:
If Personeel.Tarief Categorie = Adviseur, Aantal * Table2.Tarief adviseur
If Personeel.Tarief Categorie = Coördinator, Aantal * Table2. Tarief coordinator
If Klantnum. is null:
Null
With kind regards,
Lazzanova
Solved! Go to Solution.
@Anonymous - in Power Query, you can add a Custom Column using the following if syntax.
if [Klantnum] = null then null
esle if [Personeel.Tarief Categorie] = "Adviseur" then [Aantal] * #"Tarief Adviser"
else [Aantal] * #"Tarief coordinator"
The rates need to be added Query
Tarief Adviser = let source #"Table2"{0}[Tarief adviseur] in source
Tarief coordinator = let source #"Table2"{0}[Tarief coordinator] in source
@Anonymous - in Power Query, you can add a Custom Column using the following if syntax.
if [Klantnum] = null then null
esle if [Personeel.Tarief Categorie] = "Adviseur" then [Aantal] * #"Tarief Adviser"
else [Aantal] * #"Tarief coordinator"
The rates need to be added Query
Tarief Adviser = let source #"Table2"{0}[Tarief adviseur] in source
Tarief coordinator = let source #"Table2"{0}[Tarief coordinator] in source
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
20 | |
7 | |
6 | |
5 | |
5 |
User | Count |
---|---|
26 | |
10 | |
10 | |
9 | |
6 |