G
Gani tpt
Guest
how to find nearest value in next column if value doesn't exist in current column linq c#
i am passing param-1 value 12 and the nearest least value is : 10 (Column I)
Again i am passing param-2 value 32 and the nearest least value is : 30 (Column I)
if both parameter value exists in same column then it is fine.
Suppose, if param-1 contains is column "I" and param-2 doesn't exist in column "I",
then it should immediately move to next column to "J". if both values doesn't exist in "J" then it should immediately move to next column to "K", like that it should search.
How to do this using LINQ c#
example values.
The main intention is, the value should search in every columns form the specific range cell.
How to do this..?
Continue reading...
i am passing param-1 value 12 and the nearest least value is : 10 (Column I)
Again i am passing param-2 value 32 and the nearest least value is : 30 (Column I)
if both parameter value exists in same column then it is fine.
Suppose, if param-1 contains is column "I" and param-2 doesn't exist in column "I",
then it should immediately move to next column to "J". if both values doesn't exist in "J" then it should immediately move to next column to "K", like that it should search.
How to do this using LINQ c#
example values.
The main intention is, the value should search in every columns form the specific range cell.
How to do this..?
Continue reading...