• Awesome! That works!

    I was already using Floor to pull out the integer part of the decimal. It didn't occur to me to use floor to subtract the integer from the decimal to get the fractional part. The only part I had to add was a cast to decimal to get the result; in my case:

    (DT_DECIMAL,2)((1.2 - FLOOR(1.2)) * 100))

    Thanks!