I need to compare a data set in which one batch of data came with currency with decimals such as 246.54 the new data removes the decimals, does not round up, and has just 246… so I need to remove the decimals from the first batch so I can compare. How would I do this without rounding up?
Share
Use the floor function. It gives the first integer smaller than or equal to whatever number you feed it.