inline_res = InlineKeyboardButton('Рассчитать', callback_data='asdf {message.text}')
@dp.callback_query_handler(lambda c: c.data and c.data.startswith('asdf'))
async def process_callback_button1(callback_query: types.CallbackQuery):
user_text = str(callback_query.data).replace('asdf ', '') # И дальше работаешь с этой переменной
callback_data = f'asdf {message.text}'
@dp.callback_query_handler(lambda c: c.data and c.data.startswith('asdf'))
async def process_callback_button1(callback_query: types.CallbackQuery):
user_request = str(callback_query.data).replace('asdf ', '') # И дальше работаешь с этой переменной
А тебе придется брать за основу мой первый коммент.