The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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.