Sure there is. Using this Powershell function you can find the tenantID of a subscriptionID:
function get-tenantIdFromSubscriptionID($subId){
$response = try {(Invoke-WebRequest -UseBasicParsing -Uri "https://management.azure.com/subscriptions/$($subId)?api-version=2015-01-01" -ErrorAction Stop).BaseResponse} catch { $_.Exception.Response }
$stringHeader = $response.Headers.ToString()
return($stringHeader.SubString($stringHeader.IndexOf("login.windows.net")+18,36))
}
get-tenantIdFromSubscriptionID("<subscriptionID>")
Then you can go to https://portal.azure.com/*<tenantID*> to try to log into the specific tenant.
To honor the source of this very helpful function: https://www.lieben.nu/liebensraum/2020/08/get-tenant-id-using-azure-subscription-id/