Want to extract Months, Days, and Hours from a date/time range. Any idea how to do this?

Screenshot 2020-11-02 205818 image

The user sets a start date and end date range in the card of the first image.
The difference in months, days and hours are extracted from the range.
A second card appears replacing the first card with the amounts monthly/daily/hourly rates applied to months, days and hours difference from the date range selected.

I appreciate any help. Thanks!

https://buildingonbubble.com/block/difference-between-two-times-1459448496564x115212698237534200

or…

Convert the dates to Unix time (milliseconds). Then convert to days.
Divide by days in the month and then calculate the modulus of that (so total days in milliseconds minus months*days in milliseconds) to get you the days remaining in milliseconds.
Convert to hours and do the same with days giving you hours left.

I can do it in the text input, but how do I save it into a data type?

image

ok, I think I got it thank you!!