A comprehensive suite of productivity tools and cloud services that enhance collaboration, communication, and efficiency. Combining classic Office apps with advanced Microsoft 365 features, it supports both personal and business needs
Hi,
The only way to do it is through a VBA procedure. It's simple enough but it is necessary.
Supposing the sqm are in Number1 and the sqm/hr in Number2, here's the code:
Sub TilingDuration
dim T as task
for each t in activeproject.tasks
if not t is nothing then
if not t.number2=0 then
t.duration=60*t.number1/t.number2
end if
end if
next t
end sub
The website of fellow MVP Jack Dahlgren, masamiki.com, has the instruction on how to install and run macro's.
Greetings,