In one end I am sending a single table to power bi from stream analytics using the query
SELECT DeviceId, SignalCode, MeasurementTime INTO receivedsignalcodes FROM inputeventhub
And on the other hand I am uploading a table with some specific signal codes which indicate a fault into the power bi.
Input from these two sources are becoming seperate datasets in powerbi. My question is if there is anyway to join these two tables and see which signals that I received in stream analytics are in excel fault codes table inside powerbi.
I am open to any suggestions like writing a new stream analytics query but it gives error if i reuse the power bi output again in same query. Or I can upload my excel file to azure storage to reuse it that way but it seems like power bi does not support blob storage yet.