The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hello,
I have two tables called "Carriage" and "Limits".
The table "Carriage" contains the columns Date and Carriages. The another Table consists only of one row with multiple columns.
I want to create a new conditioned column in the table "Carriage" where I want to divide the Carriages of the Dates with the only one value of the column "Limit 1" of table "Limits".
Something like that:
Load = Value.Divide([Carriage1], from table "Limits" [Limit1])
Solved! Go to Solution.
Hey @Clout ,
are these two tables connected?
Otherwise you could try the following measure as a new column:
myDivision =
DIVIDE(
'Carriage'[Carriages],
MAX( 'Limits'[Limit 1] )
)
Hey @Clout ,
are these two tables connected?
Otherwise you could try the following measure as a new column:
myDivision =
DIVIDE(
'Carriage'[Carriages],
MAX( 'Limits'[Limit 1] )
)
Thank you!
I can do it trough the measure.
User | Count |
---|---|
74 | |
70 | |
39 | |
30 | |
28 |
User | Count |
---|---|
104 | |
95 | |
51 | |
48 | |
46 |